aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.github/workflows/cgitize.yml48
-rw-r--r--.github/workflows/main.yml4
2 files changed, 52 insertions, 0 deletions
diff --git a/.github/workflows/cgitize.yml b/.github/workflows/cgitize.yml
new file mode 100644
index 0000000..24c2e33
--- /dev/null
+++ b/.github/workflows/cgitize.yml
@@ -0,0 +1,48 @@
+name: cgitize
+
+on:
+ workflow_call:
+ workflow_dispatch:
+
+jobs:
+ maintenance:
+ runs-on: ubuntu-latest
+ name: '${{ matrix.project.repo }}'
+ env:
+ GH_TOKEN: '${{ github.token }}'
+ steps:
+ - name: Configure SSH
+ run: |
+ mkdir -p ~/.ssh
+ cat > ~/.ssh/config <<'EOF'
+ StrictHostKeyChecking no
+ EOF
+ - name: Set up ssh-agent
+ uses: webfactory/ssh-agent@v0.9.0
+ with:
+ ssh-private-key: '${{ secrets.SSH_KEY }}'
+ - name: Checkout
+ run: |
+ git clone -q 'ssh://git@github.com/egor-tensin/cgitize.git'
+ - name: Set up Python
+ uses: actions/setup-python@v6
+ with:
+ python-version-file: cgitize/.python-version
+ - name: Configure git
+ run: |
+ git config --global user.name 'Egor Tensin'
+ git config --global user.email 'egor@tensin.name'
+ - name: Run maintenance
+ id: maintenance
+ run: |
+ cd cgitize
+ make maintenance
+ commit="$( git rev-parse HEAD )"
+ echo "commit=$commit" >> "$GITHUB_OUTPUT"
+ - name: Wait until the run is finished
+ run: |
+ sleep 10
+ cd cgitize
+ commit='${{ steps.maintenance.outputs.commit }}'
+ run_id="$( gh run list --commit "$commit" --json databaseId --jq '.[0].databaseId' )"
+ gh run watch --compact --exit-status "$run_id"
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index 58bc739..ad35e93 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -6,6 +6,10 @@ on:
jobs:
+ cgitize:
+ secrets: inherit
+ uses: ./.github/workflows/cgitize.yml
+
infra:
secrets: inherit
uses: ./.github/workflows/infra.yml