Skip to content

Add git username

Add git username #1

Workflow file for this run

name: PR Sync
on:
workflow_dispatch:
pull_request:
branches:
- dev
jobs:
prsync:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install git+https://github.com/DataRecce/github-pr-syncer.git
- name: Set up Git
run: |

Check failure on line 29 in .github/workflows/prsync.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/prsync.yml

Invalid workflow file

You have an error in your yaml syntax on line 29
git config --global user.name "prsync[bot]"
git config --global user.email "prsync[bot]@users.noreply.github.com"
- name: Run pysync
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
prsync 'DataRecce/oso'