Skip to content

Commit

Permalink
Fix some GHA variables (#5)
Browse files Browse the repository at this point in the history
This is an attempt to fix a bug related to how to refer to variables in
a GHA workflow.
  • Loading branch information
syncom authored May 9, 2024
1 parent 50c0ba6 commit 5aa0512
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/autodoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
uses: peter-evans/create-pull-request@70a41aba780001da0a30141984ae2a0c95d8704e
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: "Update docs ($GITHUB_SHA)"
commit-message: "Update docs (${{ github.sha }})"
committer: GitHub <[email protected]>
author: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
signoff: false
branch: "bot/update-docs-$GITHUB_SHA"
branch: "bot/update-docs-${{ github.sha }}"
delete-branch: true
title: "Update docs ($GITHUB_SHA)"
title: "Update docs (${{ github.sha }})"
body: |
Auto-generated pull request to update README.md
labels: |
Expand All @@ -42,4 +42,4 @@ jobs:
assignees: syncom
reviewers: thistletech/engineering
draft: false
base: $GITHUB_HEAD_REF
base: ${{ github.sha }}

0 comments on commit 5aa0512

Please sign in to comment.