We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83cb8b8 commit d029913Copy full SHA for d029913
2 files changed
.github/workflows/actionlint.yml
@@ -7,6 +7,10 @@ permissions:
7
contents: read
8
pull-requests: write
9
10
+concurrency:
11
+ group: actionlint-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
12
+ cancel-in-progress: true
13
+
14
jobs:
15
lint:
16
runs-on: ubuntu-latest
.github/workflows/scorecard.yml
@@ -11,9 +11,12 @@ permissions:
analyze:
+ timeout-minutes: 20
steps:
- uses: actions/checkout@v4
17
with:
18
+ # Checkout the base repository ref, not the PR's head commit
19
+ ref: ${{ github.event.pull_request.base.sha }}
20
persist-credentials: false
21
- name: 'Run Scorecard'
22
uses: ossf/[email protected]
0 commit comments