Skip to content

Commit

Permalink
ci: add a "Test reports" workflow (#2427)
Browse files Browse the repository at this point in the history
This is just a placeholder workflow, the actual contents of the workflow
will be populated in #2400. But [the workflow dispatch
GUI](https://github.com/digdir/designsystemet/actions/workflows/test-reports.yml)
(and `gh workflow run` CLI) only works if the workflow file is already
present on the default branch.
  • Loading branch information
unekinn authored Sep 16, 2024
1 parent 595a75b commit 612c41a
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test-reports.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Test reports
on:
workflow_dispatch:
inputs:
calling_workflow_id:
required: true
calling_workflow_run_id:
required: true
calling_workflow_head_sha:
required: true

permissions:
checks: write
pull-requests: write

jobs:
checks:
runs-on: ubuntu-latest
steps:
# This is just a placeholder workflow, the actual contents of the workflow will be populated in
# another pull request. But https://github.com/digdir/designsystemet/actions/workflows/test-reports.yml
# only works if the workflow file is already present on the default branch
- run: echo "Hello, dummy workflow"

0 comments on commit 612c41a

Please sign in to comment.