Skip to content

Commit 904a5ee

Browse files
committed
fix workflows
1 parent 94ec5db commit 904a5ee

16 files changed

Lines changed: 561 additions & 365 deletions

.github/aw/actions-lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@
4040
"version": "v7.0.0",
4141
"sha": "bbbca2ddaa5d8feaa63e36b76fdaad77386f024f"
4242
},
43-
"github/gh-aw-actions/setup@v0.72.1": {
43+
"github/gh-aw-actions/setup@v0.74.4": {
4444
"repo": "github/gh-aw-actions/setup",
45-
"version": "v0.72.1",
46-
"sha": "bc56a0cad2f450c562810785ef38649c04db812a"
45+
"version": "v0.74.4",
46+
"sha": "d3abfe96a194bce3a523ed2093ddedd5704cdf62"
4747
},
4848
"github/gh-aw/actions/setup@v0.66.1": {
4949
"repo": "github/gh-aw/actions/setup",

.github/workflows/daily-repo-goals.lock.yml

Lines changed: 111 additions & 70 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/daily-workflow-sync.lock.yml

Lines changed: 103 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/import-workflow.lock.yml

Lines changed: 103 additions & 68 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/link-checker.lock.yml

Lines changed: 108 additions & 70 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/maintainer.lock.yml

Lines changed: 117 additions & 70 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

workflows/adhoc-qa.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ on:
1414
- id: check
1515
run: |
1616
MAX_OPEN_PRS=8
17-
if [[ "${{ github.event_name }}" != "schedule" ]]; then exit 0; fi
18-
COUNT=$(gh pr list --repo ${{ github.repository }} --state open --search 'in:title "[adhoc-qa]"' --json number --jq 'length')
17+
if [[ "$GITHUB_EVENT_NAME" != "schedule" ]]; then exit 0; fi
18+
COUNT=$(gh pr list --repo "$GITHUB_REPOSITORY" --state open --search 'in:title "[adhoc-qa]"' --json number --jq 'length')
1919
[[ "$COUNT" -lt "$MAX_OPEN_PRS" ]]
2020
# exits 0 if not scheduled or <MAX_OPEN_PRS open PRs, 1 if ≥MAX_OPEN_PRS
2121

workflows/ci-coach.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010
- id: check
1111
run: |
1212
MAX_OPEN_PRS=8
13-
if [[ "${{ github.event_name }}" != "schedule" ]]; then exit 0; fi
14-
COUNT=$(gh pr list --repo ${{ github.repository }} --state open --search 'in:title "[ci-coach]"' --json number --jq 'length')
13+
if [[ "$GITHUB_EVENT_NAME" != "schedule" ]]; then exit 0; fi
14+
COUNT=$(gh pr list --repo "$GITHUB_REPOSITORY" --state open --search 'in:title "[ci-coach]"' --json number --jq 'length')
1515
[[ "$COUNT" -lt "$MAX_OPEN_PRS" ]]
1616
# exits 0 if not scheduled or <MAX_OPEN_PRS open PRs, 1 if ≥MAX_OPEN_PRS
1717

workflows/doc-updater.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010
- id: check
1111
run: |
1212
MAX_OPEN_PRS=8
13-
if [[ "${{ github.event_name }}" != "schedule" ]]; then exit 0; fi
14-
COUNT=$(gh pr list --repo ${{ github.repository }} --state open --search 'in:title "[docs]"' --json number --jq 'length')
13+
if [[ "$GITHUB_EVENT_NAME" != "schedule" ]]; then exit 0; fi
14+
COUNT=$(gh pr list --repo "$GITHUB_REPOSITORY" --state open --search 'in:title "[docs]"' --json number --jq 'length')
1515
[[ "$COUNT" -lt "$MAX_OPEN_PRS" ]]
1616
# exits 0 if not scheduled or <MAX_OPEN_PRS open PRs, 1 if ≥MAX_OPEN_PRS
1717

workflows/efficiency-improver.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ on:
1717
- id: check
1818
run: |
1919
MAX_OPEN_PRS=8
20-
if [[ "${{ github.event_name }}" != "schedule" ]]; then exit 0; fi
21-
COUNT=$(gh pr list --repo ${{ github.repository }} --state open --search 'in:title "[efficiency-improver]"' --json number --jq 'length')
20+
if [[ "$GITHUB_EVENT_NAME" != "schedule" ]]; then exit 0; fi
21+
COUNT=$(gh pr list --repo "$GITHUB_REPOSITORY" --state open --search 'in:title "[efficiency-improver]"' --json number --jq 'length')
2222
[[ "$COUNT" -lt "$MAX_OPEN_PRS" ]]
2323
# exits 0 if not scheduled or <MAX_OPEN_PRS open PRs, 1 if ≥MAX_OPEN_PRS
2424

0 commit comments

Comments
 (0)