-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (32 loc) · 1.18 KB
/
update_docker_tables.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Update Docker Tables
on: [pull_request]
permissions:
contents: write
pull-requests: write
jobs:
update-tables:
name: Update Docker Tables
runs-on: ubuntu-22.04
steps:
- id: checkout
uses: actions/checkout@v3
name: Checkout Repo
with:
ref: ${{ github.head_ref }}
submodules: true
- id: make-jointgenotyping-table
name: Make Docker Table for Joint Genotyping Workflow
run: |
python .github/scripts/workflow_to_docker_table.py --output_file docs/dockers_jointgenotyping.md workflow/kfdrc-jointgenotyping-refinement-workflow.cwl
- id: cpr
name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
commit-message: update docker table
title: Update Production WF Docker Tables
body: |
Automated changes by [create-pull-request](https://github.com/peter-evans/create-pull-request) GitHub action.
Docker tables for production workflows now have most up-to-date and complete list of Dockers.
delete-branch: true
branch: ${{ github.head_ref }}-adjust-dockers
labels: bix-dev