Skip to content

Commit

Permalink
Merge pull request #11 from usegalaxy-be/workflow_tools_update
Browse files Browse the repository at this point in the history
Update update-trusted.yml
  • Loading branch information
pauldg authored Jul 18, 2024
2 parents aeaef8c + 5ffd848 commit c4c609c
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/update-trusted.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: Update Trusted Tools

on:
workflow_dispatch:
push:
pull_request:
branches:
- master
workflow_dispatch:
schedule:
- cron: "0 2 * * THU"
# Runs weekly, every Saturday at 02:00 UTC (alligned with off-peak hours)
- cron: "0 2 * * SAT"

jobs:
build:
Expand All @@ -15,17 +17,19 @@ jobs:
python-version: [3.8]
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Clone usegalaxy-eu-tools repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: usegalaxy-eu/usegalaxy-eu-tools
path: usegalaxy-eu-tools
Expand All @@ -45,7 +49,7 @@ jobs:
run: "git diff --stat"
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v3
uses: peter-evans/create-pull-request@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
commit-message: Update Galaxy tools
Expand All @@ -56,7 +60,6 @@ jobs:
Please verify if these changes are valid.
labels: |
automatic PR
reviewers: ieguinoa
branch: tools-update
base: master
- name: Check output
Expand Down

0 comments on commit c4c609c

Please sign in to comment.