We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a93fc6 commit ba90372Copy full SHA for ba90372
.github/workflows/push.yml
@@ -15,15 +15,18 @@ on:
15
type: boolean
16
default: false
17
concurrency:
18
- group: ${{ github.ref }}
+ group: ${{ github.ref }}-${{ inputs.tag && inputs.tag || github.ref_name }}
19
cancel-in-progress: true
20
jobs:
21
lint:
22
runs-on: ubuntu-24.04
23
+ name: "lint ${{ inputs.tag && inputs.tag || github.ref_name }}"
24
steps:
25
- uses: "actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8" # v6
26
27
- name: lint
28
+ # only lint if we're not backfilling an old tag
29
+ if: ${{ !inputs.strip-apk-pinning }}
30
run: shellcheck ci/*.sh
31
32
#############################################################################
0 commit comments