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 efe42b6 commit 5e71afaCopy full SHA for 5e71afa
.github/workflows/update-timestamps.yml
@@ -123,10 +123,11 @@ jobs:
123
run: |
124
set +e
125
gh pr list --json headRefName --jq '.[].headRefName' | grep auto/bump-timestamps
126
- echo "pr_exists=$?" >> "$GITHUB_OUTPUT"
+ PR_EXISTS=$?
127
+ echo "pr_exists=$PR_EXISTS" >> "$GITHUB_OUTPUT"
128
129
- name: Create PR
- if: steps.pr-check.outputs.pr_exists
130
+ if: steps.pr-check.outputs.pr_exists == '0'
131
run: gh pr create --title "[Auto] Bump repo timestamps to latest" --base main --head auto/bump-timestamps --body "Updated Release Train timestamps in defaults.yml with latest from Ark"
132
env:
133
GH_TOKEN: ${{ github.token }}
0 commit comments