DWPF-769 Preferred name field optional #276
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Dependabot Requirements" | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
- name: Install poetry | |
run: | | |
pip install --upgrade pip | |
pip install poetry | |
- name: Generate requirements | |
run: | | |
poetry export --without-hashes --output requirements.txt | |
- name: Commit requirements.txt | |
continue-on-error: true | |
run: | | |
git config --global user.name 'GitHub Actions' | |
git config --global user.email 'your-username@users.noreply.github.com' | |
git commit -am "Automated update of requirements.txt" | |
git push | |
- run: echo "Just making a successful exit code" |