From 0e274feaab32b8e79760d4f9137d4b5a065a0c57 Mon Sep 17 00:00:00 2001 From: rebortg Date: Thu, 7 Mar 2024 22:15:26 +0100 Subject: create phabricator tasks autoclose github action --- .github/workflows/phabricator_tasks.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/phabricator_tasks.yml (limited to '.github/workflows') 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 -- cgit v1.2.3