-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci(tools): prevents actions from running when unrelated changes are made
- Loading branch information
Showing
4 changed files
with
99 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/* | ||
|
@@ -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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters