Exception in extracting and setting permissions on the zip file #145
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: "Auto Assign Issue" | |
on: | |
issues: | |
types: [opened, reopened] | |
env: | |
ISSUE_NUM: ${{ github.event.issue.number }} | |
TOKEN: ${{ github.token }} | |
CUSTOM_ONCALL_ROTATION: ${{ vars.CUSTOM_ONCALL_ROTATION }} | |
ONCALL_LIST: ${{ vars.ONCALL_LIST }} | |
jobs: | |
IssueAssign: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Assign issues | |
run: | | |
chmod +x ./scripts/oncallAutoAssignIssue.sh | |
./scripts/oncallAutoAssignIssue.sh --token ${{ env.TOKEN }} --issue ${{ env.ISSUE_NUM }} |