Skip to content
CI/CD Inventory

galaxyproject/planemo-monitor (opens in new tab)

1 workflow

Triggers

push schedule workflow_dispatch

Jobs

Jobs for Monitor
Job Runs on Steps Actions used
Run planemo monitor ubuntu-24.04 6
actions/checkout@v4 actions/setup-python@v5 fusion-engineering/setup-git-credentials@v2
Raw YAML
name: Monitor
on:
  push:
    branches:
      - master
  schedule:
    - cron: "0 0 * * *"
  workflow_dispatch:
env:
  GITHUB_USER: dockerhub-toolshed
jobs:
  monitor:
    name: Run planemo monitor
    runs-on: ubuntu-24.04
    strategy:
      matrix:
        python-version: [3.8]
        subset:
         - repositories01.list
         - repositories02.list
         - repositories03.list
         - repositories04.list
    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-python@v5
        with:
          python-version: ${{ matrix.python-version }}
      - name: Install planemo
        run: pip install PyGithub planemo
      - name: Set github user
        run: |
          git config --global user.email "$GITHUB_USER@galaxyproject.org"
          git config --global user.name "$GITHUB_USER"
      - uses: fusion-engineering/setup-git-credentials@v2
        with:
          credentials: 'https://${{env.GITHUB_USER}}:${{secrets.DOCKERHUB_TOOLSHED_WORKFLOWS}}@github.com/'
      - name: planemo monitor
        run: 'bash ./monitor.sh "${{ matrix.subset }}"'
        env:
          GITHUB_TOKEN: ${{ secrets.DOCKERHUB_TOOLSHED_WORKFLOWS }}

Last fetched: