Advances in artificial intelligence for predictive toxicology: From QSAR and omics integration to clinical safety translation #17
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
| name: Compile Journal Publications | |
| on: | |
| workflow_dispatch: | |
| issues: | |
| types: [opened, edited, closed, deleted, transferred, reopened] | |
| permissions: | |
| contents: write | |
| issues: read | |
| jobs: | |
| compile: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: '3.x' | |
| - name: Compile journal publications table | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| GITHUB_REPOSITORY: ${{ github.repository }} | |
| run: >- | |
| python .github/scripts/compile-journal-publications.py | |
| --output journal-publications.md | |
| - name: Commit and push journal-publications.md | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add journal-publications.md | |
| git diff --cached --quiet || git commit -m "update journal-publications.md" | |
| git push |