Skip to content
Merged
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
6 changes: 6 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
name: build-scratch-blocks
on:
push: # Runs whenever a commit is pushed to the repository
Comment thread
cwillisf marked this conversation as resolved.
pull_request: # Runs on pull requests (including from forks)
Comment thread
cwillisf marked this conversation as resolved.
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 }}'
cancel-in-progress: ${{ github.event_name == 'pull_request' }}

jobs:
lint:
runs-on: ubuntu-latest
Expand Down
Loading