mirror of
https://github.com/scratchfoundation/scratch-l10n.git
synced 2024-12-22 05:32:34 -05:00
ci: simplify workflow triggers for push vs. PR
The CI/CD workflow will now run on any push, including one that will later be used for a PR. This means running on `pull_request` is no longer necessary, nor is filtering by branch.
This commit is contained in:
parent
6097d4f5cd
commit
4277c674f3
1 changed files with 1 additions and 3 deletions
4
.github/workflows/ci-cd.yml
vendored
4
.github/workflows/ci-cd.yml
vendored
|
@ -1,10 +1,8 @@
|
|||
name: CI/CD
|
||||
|
||||
on:
|
||||
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
|
||||
pull_request: # Runs whenever a pull request is created or updated
|
||||
push: # Runs whenever a commit is pushed to the repository
|
||||
branches: [master, tx-pull-manual]
|
||||
workflow_dispatch: # Allows you to run this workflow manually from the Actions tab
|
||||
|
||||
concurrency:
|
||||
group: "${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
|
||||
|
|
Loading…
Reference in a new issue