diff --git a/.github/workflows/test_lack_of_permissions.yml b/.github/workflows/test_lack_of_permissions.yml new file mode 100644 index 0000000..c226414 --- /dev/null +++ b/.github/workflows/test_lack_of_permissions.yml @@ -0,0 +1,26 @@ +name: Test failure scenarios + +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 }} \ No newline at end of file