feat(pt): Add command to check the available model branches in multi-… #32
This file contains 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
name: TODO workflow | |
on: | |
push: | |
branches: | |
- devel | |
jobs: | |
build: | |
if: github.repository_owner == 'deepmodeling' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run tdg-github-action | |
uses: ribtoks/tdg-github-action@master | |
with: | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
REPO: ${{ github.repository }} | |
SHA: ${{ github.sha }} | |
REF: ${{ github.ref }} | |
EXCLUDE_PATTERN: "(source/3rdparty|.git)/.*" | |
COMMENT_ON_ISSUES: 1 |