Skip to content

Generate repository list #7706

Generate repository list

Generate repository list #7706

Workflow file for this run

name: Generate repository list
on:
workflow_dispatch:
schedule:
- cron: '0 * * * *' # Every hour
jobs:
repo-list:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get the repos
uses: helaili/ea-repo-list@master
with:
enterprise: Ramboll
outputFilename: repositories.json
token: ${{secrets.GH_EA_TOKEN}}
- name: Save the repos
run: |
git config user.name github-actions
git config user.email [email protected]
git add .
git commit --allow-empty -m "latest list of repos"
git push