Skip to content

Action-Test - [ #] by @MariusStorhaug #259

Action-Test - [ #] by @MariusStorhaug

Action-Test - [ #] by @MariusStorhaug #259

Workflow file for this run

name: Action-Test
run-name: "Action-Test - [${{ github.event.pull_request.title }} #${{ github.event.pull_request.number }}] by @${{ github.actor }}"
on:
workflow_dispatch:
pull_request:
schedule:
- cron: '0 0 * * *'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
jobs:
UploadArtifact:
name: Upload Artifact
runs-on: ubuntu-latest
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v6
- name: Upload Artifact
uses: actions/upload-artifact@v5
with:
name: Docs
path: README.md
ActionTestBasic:
name: Action-Test - [Basic]
needs: UploadArtifact
runs-on: ubuntu-latest
steps:
# Need to check out as part of the test, as its a local action
- name: Checkout repo
uses: actions/checkout@v6
- name: Action-Test
uses: ./
with:
WorkflowRunID: ${{ github.run_id }}
ArtifactName: Docs
GITHUB_TOKEN: ${{ GITHUB.TOKEN }}