Skip to content

test if issue exists #13

test if issue exists

test if issue exists #13

Workflow file for this run

name: test-create-issue
on:
push:
branches:
- create-issue-updatecli-fail
permissions:
contents: write
issues: write
pull-requests: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Get token
id: get_token
uses: actions/create-github-app-token@5d869da34e18e7287c1daad50e0b8ea0f506ce69 # v1.11.0
with:
app-id: ${{ secrets.CREATE_ISSUE_APP_ID }}
private-key: ${{ secrets.CREATE_ISSUE_PRIVATE_KEY }}
owner: thomasferrandiz
repositories: |
rke2
- name: run test
run: ./updatecli/scripts/test-export.sh
env:
GH_TOKEN: ${{ steps.get_token.outputs.token }}