[DEFECT] The Host or Folder field value is not showing up in New Edit Mode
#12788
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
| name: Assign issues with `Passed Internal QA` label to QA project | |
| on: | |
| issues: | |
| types: [labeled] | |
| jobs: | |
| assign_one_project: | |
| runs-on: ubuntu-${{ vars.UBUNTU_RUNNER_VERSION || '24.04' }} | |
| name: Assign to QA Project | |
| env: | |
| QA_PROJECT_ID: 6 | |
| COLUMN_NAME: Backlog | |
| MY_GITHUB_TOKEN: ${{ secrets.PROJECT_GITHUB_TOKEN }} | |
| steps: | |
| - name: Assign issues with `Passed Internal QA` label to QA project | |
| uses: srggrs/[email protected] | |
| if: | | |
| contains(github.event.issue.labels.*.name, 'Passed Internal QA') | |
| with: | |
| project: 'https://github.com/orgs/dotCMS/projects/${{ env.QA_PROJECT_ID }}' | |
| column_name: ${{ env.COLUMN_NAME }} |