Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/PSModule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ Linter:
env:
VALIDATE_BIOME_FORMAT: false
VALIDATE_BIOME_LINT: false
VALIDATE_GITHUB_ACTIONS_ZIZMOR: false
VALIDATE_JSCPD: false
VALIDATE_JSON_PRETTIER: false
VALIDATE_MARKDOWN_PRETTIER: false
Expand Down
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ updates:
- github-actions
schedule:
interval: weekly
cooldown:
default-days: 7
18 changes: 18 additions & 0 deletions .github/linters/zizmor.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
# Configuration for zizmor, the GitHub Actions static analysis tool.
# Reference: https://docs.zizmor.sh/configuration/
#
# Super-linter passes this file with '--config', resolved from
# LINTER_RULES_PATH (default '.github/linters'), so the filename must stay
# 'zizmor.yaml'.

rules:
unpinned-uses:
config:
# Process-PSModule is a first-party PSModule workflow that this
# repository tracks by major tag on purpose, so the framework can ship
# fixes without a Dependabot bump per consumer. Allow a symbolic ref for
# the PSModule org only; everything else falls through to the implicit
# '*': hash-pin rule.
policies:
PSModule/*: ref-pin
18 changes: 11 additions & 7 deletions .github/workflows/Process-PSModule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
push:
branches:
- main
pull_request:
branches:
- main
Expand All @@ -13,20 +16,21 @@ on:
- reopened
- synchronize
- labeled
- unlabeled

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: false

permissions:
contents: write
pull-requests: write
statuses: write
contents: read
pages: write
id-token: write

jobs:
Process-PSModule:
uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@bf67cd90269ca5ce25cd76b203678907dc2984b4 # v6.1.19
uses: PSModule/Process-PSModule/.github/workflows/workflow.yml@v8
Comment thread
MariusStorhaug marked this conversation as resolved.
Dismissed
secrets:
APIKey: ${{ secrets.APIKey }}
PSGALLERY_API_KEY: ${{ secrets.PSGALLERY_API_KEY }}
GitHubAppClientId: ${{ secrets.SHELLY_CLIENT_ID }}
GitHubAppPrivateKey: ${{ secrets.SHELLY_PRIVATE_KEY }}
Loading
Loading