Exception during lifecycle processing org.glassfish.deployment.common.DeploymentException: CDI deployment failure:Unable to cast config source to type class io.smallrye.config.SmallRyeConfig -- Unable to cast config source to type class io.smallrye.config.SmallRyeConfigBug Report: #53
Workflow file for this run
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: Agent Assignment | |
on: | |
issues: | |
types: | |
- opened | |
jobs: | |
auto-assign-label: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Get Team Members | |
id: team-members | |
env: | |
frontLine: ${{ vars.FRONT_LINE_USERS_LIST }} | |
#TODO - Temporary solution - team member configuration should be dynamic | |
run: | | |
echo "::set-output name=members::$frontLine" | |
- name: Get Next Team Member | |
id: next-member | |
run: | | |
members=($(echo "${{ steps.team-members.outputs.members }}" | tr ',' '\n')) | |
index=$(( (${GITHUB_RUN_NUMBER}-1) % ${#members[@]} )) | |
next_member=${members[$index]} | |
echo "::set-output name=next_member::$next_member" | |
- name: Add Open Label and Assign to Next Team Member | |
uses: actions/github-script@v4 | |
with: | |
script: | | |
github.issues.addLabels({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
labels: ['Status: Open'] | |
}) | |
github.issues.addAssignees({ | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
issue_number: context.issue.number, | |
assignees: [`${{ steps.next-member.outputs.next_member}}`] | |
}) | |
github-token: ${{ secrets.GITHUB_TOKEN }} |