summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/phabricator_tasks.yml24
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