Skip to content

chore: fix a typo dogfood.yaml #8572

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 18, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
chore: remove prefix from commit title in dogfood.yaml
  • Loading branch information
matifali authored Jul 18, 2023
commit c8e50c8b95ce08789dbb78393ca40b14b58708fa
7 changes: 5 additions & 2 deletions .github/workflows/dogfood.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,12 @@ jobs:
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT

- name: Get Latest Commit Title
- name: Get latest commit title
id: message
run: echo "pr_title==$(git log --format=%s -n 1 ${{ github.sha }})" >> $GITHUB_OUTPUT
run: |
pr_title=$(git log --format=%s -n 1 ${{ github.sha }})
pr_title=${pr_title#*: } # remove prefix
echo "pr_title=$pr_title" >> $GITHUB_OUTPUT

- name: "Get latest Coder binary from the server"
run: |
Expand Down