Skip to content

Disable automerge while testing #117

Disable automerge while testing

Disable automerge while testing #117

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
- name: Run pre-commit
run: |
pip install pre-commit
pre-commit run --all-files
- name: Test action
uses: Scientific-Python-Translations/content-sync@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
source-repo: "Scientific-Python-Translations/numpy.org"
source-folder: "numpy.org/content/en/"
source-ref: "main"
translations-repo: "Scientific-Python-Translations/numpy.org-translations"
translations-folder: "numpy.org-translations/content/en/"
translations-ref: "main"
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.PASSPHRASE }}
token: "not-a-real-token"