Skip to content

use admin token to bypass branch protections on keepalive push #151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Aug 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions .github/workflows/normalize_repos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
token: ${{ secrets.ADMIN_GITHUB_TOKEN }}
- name: Set up Python 3.9
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install dependencies
Expand All @@ -26,7 +28,7 @@ jobs:
env:
ADMIN_GITHUB_TOKEN: ${{ secrets.ADMIN_GITHUB_TOKEN }}
- name: Export a report of invalid issues
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: invalid-issue-report
path: /tmp/invalid_issues.yml
Expand Down
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,26 @@ GitHub Action:
```


## Python Dependencies

- [Asana/python-asana][python-asana]: Official Python client library for the
Asana API v1
- [carpedm20/emoji][emoji]: emoji terminal output for Python
- [gitpython-developers/GitPython][gitpython]: GitPython is a python library
used to interact with Git repositories.
- [PyGithub/PyGithub][pygithub]: Typed interactions with the GitHub API v3
- [PyYAML][pyyaml] is a full-featured YAML framework for the Python programming
language
- [Requests][requests]: HTTP for Humans™

[python-asana]: https://github.com/asana/python-asana
[emoji]: https://github.com/carpedm20/emoji/
[gitpython]: https://github.com/gitpython-developers/GitPython
[pygithub]: https://github.com/pygithub/pygithub
[pyyaml]: https://pyyaml.org/
[requests]: https://requests.readthedocs.io/en/latest/


## License

- [`LICENSE`](LICENSE) (Expat/[MIT][mit] License)
Expand Down