Delivery - List repositories #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This workflow lists all repositories matching specific topics. | |
# It is useful to obtain the list of repositories that needs to be updated by the file-sync workflow | |
# and then copy/paste this list in the configuration | |
name: Delivery - List repositories | |
on: | |
workflow_dispatch: | |
jobs: | |
sync-repos-labels: | |
runs-on: ubuntu-latest | |
steps: | |
# Checkout is needed to grab the configuration file | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
- name: Get Org Repositories | |
id: get-repos | |
uses: fgerthoffert/[email protected] | |
with: | |
org: jahia | |
token: ${{ secrets.GH_ISSUES_PRS_CHORES }} | |
filter_topics: product,community | |
filter_operator: OR | |
filter_ignore_archived: true | |
- name: Convert the NDJSON to CSV | |
shell: bash | |
run: | | |
npx @json2csv/cli -i ${{ steps.get-repos.outputs.artifact_filepath }} --ndjson --config ${{ github.workspace }}/.github/delivery-list-repos-cfg.js -o repositories.csv | |
- name: List repositories | |
shell: bash | |
run: | | |
cat repositories.csv | tr -d \" | |