-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix minor bugs after CI update (#196)
* Fix documentation typo * Added _user_ and _push_ as inputs to dokcer-deploy * Added registry to docker-login * Added test-docker job, and ghcr.io login * Not logging in to docker registries when username not set * Added ghcr deployment * Update args for deploy-docker * Update README.md * Version bump * Added documentation update to dockerhub * Added PAT to version_bump * Added PAT to reformat_code * Added PAT to reapply_copyright * Instead of BOT PAT, using ThetaBotMaintainer * Version bump * Added commit author * Version bump * Correct formatting for bot user * Version bump * reverted version bump --------- Co-authored-by: leventeBajczi <[email protected]> Co-authored-by: ThetaBotMaintainer <[email protected]> Co-authored-by: ThetaBotMaintainer[bot] <139346997+ThetaBotMaintainer[bot]@users.noreply.github.com>
- Loading branch information
1 parent
2bc0c81
commit 11cd32c
Showing
9 changed files
with
134 additions
and
18 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
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
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
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
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 |
---|---|---|
|
@@ -16,8 +16,17 @@ jobs: | |
reformat: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: tibdex/github-app-token@b62528385c34dbc9f38e5f4225ac829252d1ea92 | ||
id: generate-token | ||
with: | ||
app_id: ${{ secrets.APP_ID }} | ||
private_key: ${{ secrets.APP_PRIVATE_KEY }} | ||
|
||
- name: Checkout repository | ||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | ||
with: | ||
token: ${{ steps.generate-token.outputs.token }} | ||
|
||
- name: Do reformat | ||
uses: leventeBajczi/[email protected] | ||
with: | ||
|
@@ -31,9 +40,15 @@ jobs: | |
commit-message: "Reformatted code" | ||
branch: "code-reformat" | ||
title: '[AutoPR] Reformatted code' | ||
token: ${{ steps.generate-token.outputs.token }} | ||
committer: ThetaBotMaintainer[bot] <139346997+ThetaBotMaintainer[bot]@users.noreply.github.com> | ||
author: ThetaBotMaintainer[bot] <139346997+ThetaBotMaintainer[bot]@users.noreply.github.com> | ||
|
||
- name: Commit changes | ||
if: ${{ inputs.direct-commit }} | ||
uses: stefanzweifel/git-auto-commit-action@3ea6ae190baf489ba007f7c92608f33ce20ef04a | ||
with: | ||
commit_message: "Reformatted code" | ||
commit_message: "Reformatted code" | ||
commit_user_name: ThetaBotMaintainer[bot] | ||
commit_user_email: 139346997+ThetaBotMaintainer[bot]@users.noreply.github.com | ||
commit_author: ThetaBotMaintainer[bot] <139346997+ThetaBotMaintainer[bot]@users.noreply.github.com> |
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
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
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
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