Add repo info for GH CLI calls (#3907)

This commit is contained in:
Jon Koops 2022-12-01 12:16:10 +01:00 committed by GitHub
parent 48625f949c
commit 2f71c5dc4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions

View file

@ -24,7 +24,7 @@ jobs:
if: ${{ github.event_name != 'schedule' }} if: ${{ github.event_name != 'schedule' }}
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out Admin UI - name: Check out repository
uses: actions/checkout@v3 uses: actions/checkout@v3
with: with:
path: admin-ui-repo path: admin-ui-repo
@ -91,7 +91,7 @@ jobs:
matrix: matrix:
container: [1, 2, 3, 4, 5] container: [1, 2, 3, 4, 5]
steps: steps:
- name: Check out Admin UI - name: Check out repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Set up Node - name: Set up Node

View file

@ -15,7 +15,7 @@ jobs:
setup: setup:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Check out Admin UI - name: Check out repository
uses: actions/checkout@v3 uses: actions/checkout@v3
- name: Set up Node - name: Set up Node
@ -88,3 +88,5 @@ jobs:
run: gh pr merge --auto --squash run: gh pr merge --auto --squash
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
OWNER: ${{ github.repository_owner }}
REPO: ${{ github.event.repository.name }}