Update credential provider script #323
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: Update credential provider script | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: # adding the workflow_dispatch so it can be triggered manually | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 4 | |
matrix: | |
python-version: [3.7] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v1 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r ./test-fixtures/requirements.txt | |
- name: Modify credential provider script | |
run: | | |
python firefox-ios/Client/Assets/CC_Script/CC_Python_Update.py | |
- name: Commit and push credential provider changed | |
run: |- | |
git diff | |
git diff --quiet || (git add .) | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
commit-message: Refactor [vXXX] auto update credential provider script | |
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | |
committer: GitHub <noreply@github.com> | |
title: Refactor [vXXX] auto update credential provider script | |
branch: update-cred-provider-script | |
token: ${{ secrets.GITHUB_TOKEN }} |