diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c21c5eb..cd62ecc 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -6,9 +6,9 @@ updates: - "Type: Maintenance" schedule: interval: daily -- package-ecosystem: github-actions - directory: '/' - schedule: - interval: daily - labels: - - "Type: Maintenance" + - package-ecosystem: github-actions + directory: "/" + schedule: + interval: daily + labels: + - "Type: Maintenance" diff --git a/.github/workflows/actionlint.yml b/.github/workflows/actionlint.yml index 81e2131..875a07e 100644 --- a/.github/workflows/actionlint.yml +++ b/.github/workflows/actionlint.yml @@ -3,8 +3,8 @@ name: actionlint on: pull_request: paths: - - '.github/actions/**' - - '.github/workflows/**' + - ".github/actions/**" + - ".github/workflows/**" concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/cspell.yml b/.github/workflows/cspell.yml index 0672bb1..84f2e14 100644 --- a/.github/workflows/cspell.yml +++ b/.github/workflows/cspell.yml @@ -1,4 +1,4 @@ -name: 'Check spelling' +name: "Check spelling" on: pull_request: diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 168b873..f6bb40e 100644 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -2,18 +2,17 @@ name: Mark stale issues and pull requests on: schedule: - - cron: "30 1 * * *" + - cron: "30 1 * * *" jobs: stale: - runs-on: ubuntu-latest steps: - - uses: actions/stale@v9 - with: - repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'Stale issue message' - stale-pr-message: 'Stale pull request message' - stale-issue-label: 'no-issue-activity' - stale-pr-label: 'no-pr-activity' + - uses: actions/stale@v9 + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + stale-issue-message: "Stale issue message" + stale-pr-message: "Stale pull request message" + stale-issue-label: "no-issue-activity" + stale-pr-label: "no-pr-activity"