tests: cloud pro entitled to landscape now #101
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: Post-merge actions | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
create-issue: | |
if: github.event.pull_request.merged == true | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: cd ./.github/actions/create-issue && npm install | |
- name: Create issues if needed | |
uses: ./.github/actions/create-issue | |
id: create-issue | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} |