Update encoredigitalgroup/common requirement from ^0.11.1 to ^0.11.1 || ^1.0.0 #1
Workflow file for this run
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
name: Duster Fix | |
# Commits made in here will not trigger any workflows | |
# Checkout Duster's documentation for a workaround | |
on: | |
# push: | |
# branches: [ master ] | |
pull_request: | |
jobs: | |
duster: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: ${{ github.head_ref }} | |
- name: "Duster Fix" | |
uses: tighten/duster-action@v2 | |
with: | |
args: fix | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
id: auto_commit_action | |
with: | |
commit_message: Dusting | |
commit_user_name: EncoreBot | |
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@v4 | |
with: | |
commit_message: Ignore Dusting commit in git blame | |
commit_user_name: EncoreBot | |
commit_user_email: [email protected] |