Breakpoint test on GitHub #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Breakpoint test on GitHub | |
on: | |
workflow_dispatch: | |
notify-slack: | |
description: "Post a notification for the breakpoint on Slack" | |
required: false | |
type: boolean | |
env: | |
AUTHORIZED_USERS: edganiukov,hugosantos,n-g,htr,nichtverstehen,gmichelo | |
jobs: | |
breakpoint: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Execute breakpoint | |
uses: ./ | |
with: | |
duration: 5m | |
authorized-users: ${{ env.AUTHORIZED_USERS }} | |