Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions .github/workflows/sync-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,16 +37,18 @@ jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Check out calling repository
- name: Check out element-hq/element-meta
uses: actions/checkout@v4
if: github.repository != 'element-hq/element-meta'
with:
path: caller-repository
repository: element-hq/element-meta

- name: Check out element-hq/element-meta
# nb. this put the caller repo within the element-meta checkout so it must
# be done afterwards as actions/checkout erases the directory
- name: Check out calling repository
uses: actions/checkout@v4
if: github.repository != 'element-hq/element-meta'
with:
repository: element-hq/element-meta
path: caller-repository

- name: "Set up Node.js"
uses: actions/setup-node@v4
Expand Down