Merge pull request #302 from eseiler/infra/cump #173
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-FileCopyrightText: 2006-2026 Knut Reinert & Freie Universität Berlin | |
| # SPDX-FileCopyrightText: 2016-2026 Knut Reinert & MPI für molekulare Genetik | |
| # SPDX-License-Identifier: CC0-1.0 | |
| name: Sharg Markdown | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| workflow_dispatch: | |
| concurrency: | |
| group: readme-snippet-${{ github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| TZ: Europe/Berlin | |
| defaults: | |
| run: | |
| shell: bash -exo pipefail {0} | |
| jobs: | |
| readme-snippet: | |
| name: Update README | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| if: github.repository_owner == 'seqan' || github.event_name == 'workflow_dispatch' | |
| steps: | |
| - name: Checkout Sharg | |
| uses: actions/checkout@v6 | |
| with: | |
| token: ${{ secrets.SEQAN_ACTIONS_PAT }} | |
| - name: Import GPG key | |
| uses: crazy-max/ghaction-import-gpg@v6 | |
| with: | |
| gpg_private_key: ${{ secrets.SEQAN_ACTIONS_GPG_KEY }} | |
| passphrase: ${{ secrets.SEQAN_ACTIONS_GPG_PASSPHRASE }} | |
| git_user_signingkey: true | |
| git_commit_gpgsign: true | |
| - name: Update README | |
| uses: dineshsonachalam/markdown-autodocs@v1.0.7 | |
| with: | |
| commit_author: seqan-actions[bot] | |
| commit_user_email: seqan-actions@users.noreply.github.com | |
| commit_message: "[MISC] Update README.md" | |
| output_file_paths: '[./README.md]' | |
| categories: '[code-block]' |