Moved congress parade budget options to gdp from weekly_net_fixed_income #1182
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: Re-encode to UTF-8 BOM | |
on: | |
push: | |
branches-ignore: | |
- Imperia-Core | |
jobs: | |
reencode: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set github checkout | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Re-encode txt files | |
run: | | |
python scripts/encode_to_bom.py | |
- name: Commit and push if changes are made | |
run: | | |
git config --local user.email "${{ github.actor }}@users.noreply.github.com" | |
git config --local user.name "${{ github.actor }}" | |
git add -u | |
git diff-index --quiet HEAD || (git commit -m "Re-encoded txt files to UTF-8 BOM" && git push origin "${{ github.ref }}") |