Skip to content

Commit ba90372

Browse files
committed
Do not cancel multiple tag backfills
And only lint if we're not backfilling
1 parent 3a93fc6 commit ba90372

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/push.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,18 @@ on:
1515
type: boolean
1616
default: false
1717
concurrency:
18-
group: ${{ github.ref }}
18+
group: ${{ github.ref }}-${{ inputs.tag && inputs.tag || github.ref_name }}
1919
cancel-in-progress: true
2020
jobs:
2121
lint:
2222
runs-on: ubuntu-24.04
23+
name: "lint ${{ inputs.tag && inputs.tag || github.ref_name }}"
2324
steps:
2425
- uses: "actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8" # v6
2526

2627
- name: lint
28+
# only lint if we're not backfilling an old tag
29+
if: ${{ !inputs.strip-apk-pinning }}
2730
run: shellcheck ci/*.sh
2831

2932
#############################################################################

0 commit comments

Comments
 (0)