aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/cgitize.yml
blob: 24c2e338387ea2a2597165cc9b5bed12695f5f23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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"