Skip to content

Commit

Permalink
Merge pull request #24 from clickbar/fix-ci-for-prs
Browse files Browse the repository at this point in the history
  • Loading branch information
saibotk authored Mar 20, 2024
2 parents 0685793 + 6a3c852 commit ca537a4
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled]

permissions:
contents: read

jobs:
# Enforces the update of a changelog file on every pull request
changelog:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/linting-and-formatting.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: Linting and formatting

on: [push]
on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: Tests

on: [push]
on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
Expand Down

0 comments on commit ca537a4

Please sign in to comment.