[Next.js] [XMC] Fix "Could not resolve site for name" error on XMC rendering host build #71
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: Create Jira Issue | |
on: | |
issues: | |
types: [opened] | |
pull_request: | |
types: [opened] | |
jobs: | |
create_issue: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Create issue | |
run: node ./scripts/create-jira-issue.js | |
env: | |
GITHUB: ${{ toJson(github) }} | |
JIRA_WEBHOOK_URL: ${{ vars.JIRA_WEBHOOK_URL }} |