diff options
author | rebortg <github@ghlr.de> | 2024-03-07 22:15:26 +0100 |
---|---|---|
committer | rebortg <github@ghlr.de> | 2024-03-07 22:15:26 +0100 |
commit | 0e274feaab32b8e79760d4f9137d4b5a065a0c57 (patch) | |
tree | e5b86e19ba49d5d13f61d9ec1fa4cb8187a9640a | |
parent | a36a884b838b72ced5a176e13dbd0012851d111d (diff) | |
download | vyos-infrastructure-0e274feaab32b8e79760d4f9137d4b5a065a0c57.tar.gz vyos-infrastructure-0e274feaab32b8e79760d4f9137d4b5a065a0c57.zip |
create phabricator tasks autoclose github action
-rw-r--r-- | .github/workflows/phabricator_tasks.yml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/phabricator_tasks.yml b/.github/workflows/phabricator_tasks.yml new file mode 100644 index 0000000..678ce65 --- /dev/null +++ b/.github/workflows/phabricator_tasks.yml @@ -0,0 +1,24 @@ +name: Autoclose Finished Phabricator Tasks +on: + workflow_dispatch: + schedule: + - cron: '0 6 * * *' + +jobs: + main: + runs-on: ubuntu-latest + steps: + - name: Set Up Python + uses: actions/setup-python@v5 + with: + python-version: 3.11.x + + - uses: actions/checkout@v4 + + - name: run script + env: + PHABRICATOR_WRITE_TOKEN: ${{ secrets.PHABRICATOR_WRITE_TOKEN }} + if: env.PHABRICATOR_WRITE_TOKEN != null + run: | + pip3 install -r phabricator_tasks/requirements.txt + python3 phabricator_tasks/tasks.py -t ${{ secrets.PHABRICATOR_WRITE_TOKEN }}
\ No newline at end of file |