Update IWC tools #15
This file contains hidden or 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
| name: Update IWC tools | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| instance: | |
| description: 'Galaxy Instance URL' | |
| required: true | |
| type: choice | |
| options: | |
| - galaxy-qa1.galaxy.cloud.e-infra.cz | |
| - usegalaxy.cz | |
| - galaxy-umsa.grid.cesnet.cz | |
| schedule: | |
| - cron: '9 9 * * *' # every day at 09:09 UTC | |
| jobs: | |
| update-repos: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| instance: >- | |
| ${{ fromJSON( | |
| github.event_name == 'workflow_dispatch' | |
| && format('["{0}"]', github.event.inputs.instance) | |
| || '["galaxy-qa1.galaxy.cloud.e-infra.cz","usegalaxy.cz"]' | |
| ) }} | |
| steps: | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.12' | |
| architecture: 'x64' | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: pip install -r requirements.txt | |
| - name: Clone IWC repo | |
| run: git clone https://github.com/galaxyproject/iwc /tmp/iwc | |
| - name: Run update script | |
| run: python scripts/get_iwc_tools.py -w /tmp/iwc -s ${{ matrix.instance }} -u uncategorized.yml | |
| - name: Get current date | |
| id: date | |
| run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT | |
| - name: Create Pull Request | |
| uses: peter-evans/create-pull-request@v7 | |
| with: | |
| branch: iwc-update-${{ matrix.instance }} | |
| committer: CESNETbot <[email protected]> | |
| title: Install IWC tools for ${{ matrix.instance }} | |
| commit-message: "output of get_iwc_tools.py" | |
| labels: automated | |
| assignees: martenson | |
| reviewers: martenson |