Skip to content

Commit

Permalink
Adding failure workflow for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-murray authored Oct 19, 2023
1 parent fcd7eab commit 715c95c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/test_lack_of_permissions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Test Local Action

on:
workflow_dispatch:
inputs:
directory:
type: string
default: test-data/maven/simple
required: true

permissions: read-all

jobs:
test:
name: Test Failure

runs-on: ubuntu-22.04

steps:
- name: Checkout
uses: actions/checkout@v3

- name: Run local Action
uses: ./
with:
directory: ${{ inputs.directory }}

0 comments on commit 715c95c

Please sign in to comment.