Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH Actions: run workflows more selectively #131

Merged
merged 1 commit into from
May 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion .github/workflows/cs.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
name: CS

on:
# Run on all pushes and on all pull requests.
# Run on all relevant pushes and on all relevant pull requests.
push:
paths-ignore:
- '**.md'
- '.gitattributes'
- '.gitignore'
- 'LICENSE'
- 'phpunit.xml.dist'
- '.github/dependabot.yml'
- '.github/workflows/test.yml'
- 'images/**'
pull_request:
paths-ignore:
- '**.md'
- '.gitattributes'
- '.gitignore'
- 'LICENSE'
- 'phpunit.xml.dist'
- '.github/dependabot.yml'
- '.github/workflows/test.yml'
- 'images/**'
# Allow manually triggering the workflow.
workflow_dispatch:

Expand Down
20 changes: 19 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,31 @@
name: Test

on:
# Run on pushes to `main` and on all pull requests.
# Run on relevant pushes to `main` and on all relevant pull requests.
push:
branches:
- main
paths-ignore:
- '**.md'
- '.gitattributes'
- '.gitignore'
- 'LICENSE'
- '.phpcs.xml.dist'
- 'phpcs.xml.dist'
- '.github/dependabot.yml'
- '.github/workflows/cs.yml'
- 'images/**'
pull_request:
paths-ignore:
- '**.md'
- '.gitattributes'
- '.gitignore'
- 'LICENSE'
- '.phpcs.xml.dist'
- 'phpcs.xml.dist'
- '.github/dependabot.yml'
- '.github/workflows/cs.yml'
- 'images/**'
# Allow manually triggering the workflow.
workflow_dispatch:

Expand Down