Skip to content

Commit

Permalink
Move workflow call to a separate job, per docs
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterBowman authored Nov 18, 2023
1 parent 5aae873 commit 2037934
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/contributors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ on:
jobs:
update:
runs-on: ubuntu-latest
outputs:
modified: ${{steps.check.outputs.modified}}
steps:
- uses: fkirc/skip-duplicate-actions@v5
with:
Expand All @@ -30,5 +32,8 @@ jobs:
run: |
git -c "user.name=GitHub Actions" -c "user.email=" commit -am "Update contributors"
git push
- name: Regenerate GitHub Pages site
uses: ./.github/workflows/gh-pages.yml
gh-pages:
needs: update
if: needs.update.outputs.modified == 'true'
uses: ./.github/workflows/gh-pages.yml
1 change: 1 addition & 0 deletions docs/contributors.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

This is a list of people who contributed to the roboticslab-uc3m software ecosystem.


- Ainhoamm1
- Alberto Jardón Huete (ajardon)
- alicest9
Expand Down

0 comments on commit 2037934

Please sign in to comment.