-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bad case that breaks a number of workflows
- Loading branch information
1 parent
5c71f48
commit ccf5a31
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,8 @@ jobs: | |
- name: Update Changelog | ||
uses: docker://ghcr.io/ponylang/changelog-bot-action:0.3.6 | ||
with: | ||
git_user_name: "Ponylang Main Bot" | ||
git_user_email: "[email protected]" | ||
GIT_USER_NAME: "Ponylang Main Bot" | ||
GIT_USER_EMAIL: "[email protected]" | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Send alert on failure | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,8 +22,8 @@ jobs: | |
- name: Update | ||
uses: docker://ghcr.io/ponylang/release-notes-bot-action:0.3.9 | ||
with: | ||
git_user_name: "Ponylang Main Bot" | ||
git_user_email: "[email protected]" | ||
GIT_USER_NAME: "Ponylang Main Bot" | ||
GIT_USER_EMAIL: "[email protected]" | ||
env: | ||
API_CREDENTIALS: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Send alert on failure | ||
|