-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use shared actions for weekly builds and to auto assign for issues (#17)
- Loading branch information
1 parent
6ec23bc
commit 7f795bf
Showing
2 changed files
with
18 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: "Auto assignment for issues" | ||
|
||
on: | ||
issues: | ||
types: ["opened"] | ||
|
||
jobs: | ||
auto-assign: | ||
uses: "tinted-theming/home/.github/workflows/shared-auto-assign-issues.yml@main" | ||
secrets: | ||
token: ${{ secrets.BOT_ACCESS_TOKEN }} |
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 |
---|---|---|
@@ -1,24 +1,13 @@ | ||
name: Update with the latest colorschemes | ||
name: Update with the latest tinted-theming colorschemes | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "0 0 * * 0" # https://crontab.guru/every-week | ||
|
||
jobs: | ||
run: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Fetch the repository code | ||
uses: actions/checkout@v3 | ||
with: | ||
token: ${{ secrets.BOT_ACCESS_TOKEN }} | ||
- name: Update schemes | ||
uses: tinted-theming/tinted-builder-rust@latest | ||
- name: Commit the changes, if any | ||
uses: stefanzweifel/git-auto-commit-action@v4 | ||
with: | ||
commit_message: Update with the latest colorschemes | ||
branch: ${{ github.head_ref }} | ||
commit_user_name: tinted-theming-bot | ||
commit_user_email: [email protected] | ||
commit_author: tinted-theming-bot <[email protected]> | ||
build-and-commit: | ||
uses: "tinted-theming/home/.github/workflows/shared-build-template-and-commit-themes.yml@main" | ||
secrets: | ||
token: ${{ secrets.BOT_ACCESS_TOKEN }} | ||
with: | ||
ref: ${{ github.head_ref }} |