Skip to content

Commit

Permalink
Revert "Merge pull request quarkusio#2153 from marko-bekhta/fix/27-re…
Browse files Browse the repository at this point in the history
…tire-followup"

This reverts commit 3a9eda0, reversing
changes made to efc9dbe.
  • Loading branch information
yrodiere committed Nov 4, 2024
1 parent dad4925 commit 3c54562
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/sync-working-groups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,21 @@ jobs:
with:
distribution: temurin
java-version: ${{ env.JVM_VERSION }}

- name: Build working groups YAML file
uses: jbangdev/[email protected]
with:
script: working-groups/main.java
jbangargs: --verbose -Dworking-groups.output=_data/wg.yaml.template
jbangargs: --verbose -Dworking-groups.output=_data/wg.yaml
env:
JBANG_REPO: /root/.jbang/repository
GITHUB_TOKEN: ${{ secrets.SYNC_WORKING_GROUP_TOKEN }}
GITHUB_TOKEN: ${{ secrets.SYNC_WORKING_GROUP_TOKEN }}

- name: Configure Git author
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
- name: Commit changes
shell: bash
run: |
Expand Down
14 changes: 14 additions & 0 deletions working-groups/templates/wg.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
working-groups:
{#for board in boards}
- title: "{board.title}"
board-url: "{board.url}"
short-description: {board.shortDescription.trim()}
readme: |
{board.getIndentedReadme().raw}
status: {board.getBadgeText()}
last-activity: {board.getLastActivityDate()}
{#if board.getLastUpdate() && board.getLastUpdate().body.trim()}
last-update: {board.getLastUpdate().body.trim()}
{/if}
{/for}

0 comments on commit 3c54562

Please sign in to comment.