feat: Add a SliceMapE function for handle errors and add unit tests #12
This file contains hidden or 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
# Run specified actions or jobs for issue and PR comments | |
name: "Prow github actions" | |
on: | |
issue_comment: | |
types: [created] | |
# Grant additional permissions to the GITHUB_TOKEN | |
permissions: | |
# Allow labeling issues | |
issues: write | |
# Allow adding a review to a pull request | |
pull-requests: write | |
jobs: | |
prow-execute: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: jpmcb/[email protected] | |
with: | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
prow-commands: "/assign | |
/unassign | |
/approve | |
/retitle | |
/area | |
/kind | |
/priority | |
/remove | |
/lgtm | |
/close | |
/reopen | |
/lock | |
/milestone | |
/hold | |
/cc | |
/uncc" |