Check for new conda releases #5127
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: Check for new conda releases | |
on: | |
schedule: | |
- cron: "0 */6 * * *" | |
jobs: | |
check_conda_release: | |
name: "Check for release and open issue" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Run Actions script | |
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
with: | |
script: | | |
const script = require(`${process.env.GITHUB_WORKSPACE}/.github/workflows/conda_release.js`) | |
console.log(script({github, context})) |