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 ec6739e commit b3c36bdCopy full SHA for b3c36bd
.github/workflows/ipxe_version.yaml
@@ -25,10 +25,12 @@ jobs:
25
id: version
26
27
- name: Update version string
28
- id: update
29
run: |
30
sed -Ei 's/(IPXE_REF: )[0-9a-f]{40}/\1${{ steps.version.outputs.sha }}/' .github/workflows/ipxe_build.yaml
31
+ - name: Check dirty status
32
+ id: dirty
33
+ run: |
34
# set a flag if something was changed
35
if git diff-index --quiet HEAD --; then
36
echo "::set-output name=dirty::false"
@@ -37,7 +39,7 @@ jobs:
37
39
fi
38
40
41
- name: Create pull request
- if: steps.update.outputs.dirty == 'true'
42
+ if: steps.dirty.outputs.dirty == 'true'
43
uses: peter-evans/create-pull-request@v4
44
with:
45
title: ':arrow_up: Bump ipxe/ipxe to ${{ steps.version.outputs.sha-short }}'
0 commit comments