We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 779cbb0 commit 1fbe9a7Copy full SHA for 1fbe9a7
.github/workflows/bevy_mod_scripting.yml
@@ -12,9 +12,16 @@ on:
12
13
name: Check and Lint - bevy_mod_scripting
14
15
+concurrency:
16
+ # Use github.run_id on main branch
17
+ # Use github.event.pull_request.number on pull requests, so it's unique per pull request
18
+ # Use github.ref on other branches, so it's unique per branch
19
+ group: ${{ github.workflow }}-${{ github.ref == 'refs/heads/main' && github.run_id || github.event.pull_request.number || github.ref }}
20
+ cancel-in-progress: true
21
+
22
jobs:
23
check:
- name: Check {{ matrix.run_args.label }}
24
+ name: Check - {{ matrix.run_args.label }}
25
runs-on: ${{ matrix.run_args.os }}
26
strategy:
27
matrix:
0 commit comments