Skip to content

Workflow-Test [WithManifest] - [⚙️ [Maintenance]: Workflow actions follow the selected revision #385] by @MariusStorhaug #1667

Workflow-Test [WithManifest] - [⚙️ [Maintenance]: Workflow actions follow the selected revision #385] by @MariusStorhaug

Workflow-Test [WithManifest] - [⚙️ [Maintenance]: Workflow actions follow the selected revision #385] by @MariusStorhaug #1667

name: Workflow-Test [WithManifest]
run-name: 'Workflow-Test [WithManifest] - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}'
on:
workflow_dispatch:
pull_request:
paths:
- '.github/workflows/**'
- '!.github/workflows/Release.yml'
- '!.github/workflows/Linter.yml'
schedule:
- cron: '0 0 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
pull-requests: write
statuses: write
pages: write
id-token: write
jobs:
WorkflowTestWithManifest:
if: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
uses: ./.github/workflows/workflow.yml
secrets:
APIKey: ${{ secrets.APIKey }}
TestData: >-
{
"secrets": {
"PSMODULE_TEST_SINGLELINE_SECRET": "${{ secrets.PSMODULE_TEST_SINGLELINE_SECRET }}"
},
"variables": {
"PSMODULE_TEST_VARIABLE": ${{ toJSON(vars.PSMODULE_TEST_VARIABLE) }}
}
}
with:
WorkingDirectory: tests/srcWithManifestTestRepo
ImportantFilePatterns: |
^src/
^README\.md$
^\.github/workflows/(?!Release\.yml$|Linter\.yml$)