diff --git a/.gitea/workflows/ci-develop.yml b/.gitea/workflows/ci-develop.yml index 12658a1..c274a27 100644 --- a/.gitea/workflows/ci-develop.yml +++ b/.gitea/workflows/ci-develop.yml @@ -7,15 +7,37 @@ on: push: branches: - develop + tags: + - "v*" pull_request: types: - opened - synchronize - reopened branches: + - develop - main jobs: + analyze: + runs-on: 'ubuntu-latest' + + strategy: + fail-fast: false + matrix: + language: ['docker'] + + steps: + - uses: 'actions/checkout@v3.6.0' + + - name: 'Initialize CodeQL' + uses: 'github/codeql-action/init@v2' + with: + languages: ${{ matrix.language }} + + - name: 'Perform CodeQL Analysis' + uses: 'github/codeql-action/analyze@v2' + test: runs-on: ubuntu-latest @@ -85,4 +107,8 @@ jobs: if: always() run: | docker compose --profile setup down - rm -rf /workspace/tips-of-mine/metabase/* \ No newline at end of file + rm -rf /workspace/tips-of-mine/metabase/* + + - name: actions/labeler@v5 + with: + sync-labels: true \ No newline at end of file