-
-
Notifications
You must be signed in to change notification settings - Fork 2
40 lines (33 loc) · 1.12 KB
/
duster-fix-blame.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Duster Fix
on:
workflow_call:
workflow_dispatch:
# Commits made in here will not trigger any workflows
# Checkout Duster's documentation for a workaround
jobs:
duster:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- name: "Duster Fix"
uses: tighten/duster-action@v3
with:
args: fix
- uses: stefanzweifel/git-auto-commit-action@v5
id: auto_commit_action
with:
commit_message: "style: automated changes to code style"
commit_user_name: GitHub Action
commit_user_email: [email protected]
- name: Ignore Duster commit in git blame
if: steps.auto_commit_action.outputs.changes_detected == 'true'
run: echo ${{ steps.auto_commit_action.outputs.commit_hash }} >> .git-blame-ignore-revs
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "ci: ignoring commit change in git blame"
commit_user_name: GitHub Action
commit_user_email: [email protected]