Skip to content

Commit

Permalink
ci(tools): prevents actions from running when unrelated changes are made
Browse files Browse the repository at this point in the history
  • Loading branch information
justin-p committed Oct 3, 2024
1 parent 88e1a60 commit 3583353
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 18 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/generate-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,30 @@ on:
types:
- opened
- synchronize
paths-ignore:
- 'release-notes.md'
- development.md
- deployment.md
- SECURITY.md
- README.md
- LICENSE
- .pre-commit-config.yaml
- .gitignore
- .gitattributes
- img/*
- hooks/*
- .copier/*

jobs:
generate-client:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
# For PRs from forks
- uses: actions/checkout@v4
# For PRs from the same repo
- uses: actions/checkout@v4
if: ( github.event_name != 'pull_request' || github.secret_source == 'Actions' )
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.FULL_STACK_FASTAPI_TEMPLATE_REPO_TOKEN }}
token: ${{ github.token }}
- uses: actions/setup-node@v4
with:
node-version: lts/*
Expand All @@ -39,19 +48,10 @@ jobs:
- run: uv run bash scripts/generate-client.sh
env:
VIRTUAL_ENV: backend/.venv
- name: Add changes to git
- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "github-actions"
git add frontend/src/client
# Same repo PRs
- name: Push changes
if: ( github.event_name != 'pull_request' || github.secret_source == 'Actions' )
run: |
git diff --staged --quiet || git commit -m "✨ Autogenerate frontend client"
git push
# Fork PRs
- name: Check changes
if: ( github.event_name == 'pull_request' && github.secret_source != 'Actions' )
run: |
git diff --staged --quiet || (echo "Changes detected in generated client, run scripts/generate-client.sh and commit the changes" && exit 1)
31 changes: 30 additions & 1 deletion .github/workflows/lint-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,40 @@ name: Lint Backend
on:
push:
branches:
- master
- main
paths-ignore:
- 'release-notes.md'
- renovate.json
- development.md
- deployment.md
- SECURITY.md
- README.md
- LICENSE
- .pre-commit-config.yaml
- .gitignore
- .gitattributes
- .editorconfig
- '.better-commits.json'
- img/*
- hooks/*
- .copier/*
pull_request:
types:
- opened
- synchronize
paths-ignore:
- 'release-notes.md'
- development.md
- deployment.md
- SECURITY.md
- README.md
- LICENSE
- .pre-commit-config.yaml
- .gitignore
- .gitattributes
- img/*
- hooks/*
- .copier/*

jobs:
lint-backend:
Expand Down
28 changes: 27 additions & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,37 @@ name: Playwright Tests
on:
push:
branches:
- master
- main
paths-ignore:
- 'release-notes.md'
- development.md
- deployment.md
- SECURITY.md
- README.md
- LICENSE
- .pre-commit-config.yaml
- .gitignore
- .gitattributes
- img/*
- hooks/*
- .copier/*
pull_request:
types:
- opened
- synchronize
paths-ignore:
- 'release-notes.md'
- development.md
- deployment.md
- SECURITY.md
- README.md
- LICENSE
- .pre-commit-config.yaml
- .gitignore
- .gitattributes
- img/*
- hooks/*
- .copier/*
workflow_dispatch:
inputs:
debug_enabled:
Expand Down
28 changes: 27 additions & 1 deletion .github/workflows/test-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,37 @@ name: Test Backend
on:
push:
branches:
- master
- main
paths-ignore:
- 'release-notes.md'
- development.md
- deployment.md
- SECURITY.md
- README.md
- LICENSE
- .pre-commit-config.yaml
- .gitignore
- .gitattributes
- img/*
- hooks/*
- .copier/*
pull_request:
types:
- opened
- synchronize
paths-ignore:
- 'release-notes.md'
- development.md
- deployment.md
- SECURITY.md
- README.md
- LICENSE
- .pre-commit-config.yaml
- .gitignore
- .gitattributes
- img/*
- hooks/*
- .copier/*

jobs:
test-backend:
Expand Down

0 comments on commit 3583353

Please sign in to comment.