Skip to content

Update the feedback #103

Update the feedback

Update the feedback #103

Workflow file for this run

name: Update the feedback
on:
schedule:
# * is a special character in YAML so you have to quote this string
# We'll run this weekly
- cron: '0 11 * * 1'
workflow_dispatch:
jobs:
runner-job:
if: github.repository_owner == 'galaxyproject'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- uses: actions/setup-python@v2
with:
python-version: '3.8'
architecture: 'x64'
- name: Install dependencies
run: |
pip install pandas
- name: Collect and process feedback
run: |
python bin/prepare_feedback.py
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: Update feedback
title: "Update feedback"