Browse Source

chore: synced file(s) with dgibbs64/repo-sync (#4811)

* chore: synced local '.github/' with remote 'general/.github/'

* chore: synced local './' with remote 'bash/'
pull/4849/head
Daniel Gibbs 7 months ago
committed by GitHub
parent
commit
d33f830a6a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      .github/dependabot.yml
  2. 4
      .github/workflows/action-prettier.yml
  3. 8
      .github/workflows/action-super-linter.yml
  4. 2
      .github/workflows/action-update-copyright-years-in-license-file.yml

1
.github/dependabot.yml

@ -1,4 +1,3 @@
---
version: 2 version: 2
updates: updates:
- package-ecosystem: "github-actions" - package-ecosystem: "github-actions"

4
.github/workflows/action-prettier.yml

@ -1,5 +1,7 @@
name: Prettier name: Prettier
on: on:
workflow_dispatch:
push: push:
branches: branches:
- "*" - "*"
@ -18,6 +20,8 @@ jobs:
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v5 uses: actions/checkout@v5
with:
persist-credentials: false
- name: Install Prettier and plugins - name: Install Prettier and plugins
run: | run: |

8
.github/workflows/action-super-linter.yml

@ -1,4 +1,3 @@
---
name: Super Linter name: Super Linter
on: on:
@ -31,6 +30,7 @@ jobs:
# super-linter needs the full git history to get the # super-linter needs the full git history to get the
# list of files that changed across commits # list of files that changed across commits
fetch-depth: 0 fetch-depth: 0
persist-credentials: false
- name: Install Prettier plugins (for summary formatting) - name: Install Prettier plugins (for summary formatting)
run: | run: |
@ -41,9 +41,11 @@ jobs:
env: env:
# To report GitHub Actions status checks # To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
VALIDATE_JSCPD: false VALIDATE_JSCPD: false
VALIDATE_SHELL_SHFMT: false
VALIDATE_YAML_PRETTIER: false
VALIDATE_JSON_PRETTIER: false VALIDATE_JSON_PRETTIER: false
VALIDATE_MARKDOWN_PRETTIER: false VALIDATE_MARKDOWN_PRETTIER: false
VALIDATE_NATURAL_LANGUAGE: false VALIDATE_NATURAL_LANGUAGE: false
VALIDATE_SHELL_SHFMT: false
VALIDATE_TERRAFORM_TERRASCAN: false
VALIDATE_YAML_PRETTIER: false

2
.github/workflows/action-update-copyright-years-in-license-file.yml

@ -1,4 +1,5 @@
name: Update copyright year(s) in license file name: Update copyright year(s) in license file
on: on:
workflow_dispatch: workflow_dispatch:
schedule: schedule:
@ -15,6 +16,7 @@ jobs:
uses: actions/checkout@v5 uses: actions/checkout@v5
with: with:
fetch-depth: 0 fetch-depth: 0
persist-credentials: false
- name: Action Update License Year - name: Action Update License Year
uses: FantasticFiasco/action-update-license-year@v3 uses: FantasticFiasco/action-update-license-year@v3
with: with:

Loading…
Cancel
Save