Skip to content

Bump minversions again and fix astropy intersphinx #27

Bump minversions again and fix astropy intersphinx

Bump minversions again and fix astropy intersphinx #27

Workflow file for this run

name: When Opened
on:
issues:
types:
- opened
pull_request_target:
types:
- opened
jobs:
triage:
runs-on: ubuntu-latest
steps:
- name: 'Comment Draft PR'
uses: actions/github-script@v7
if: github.event.pull_request.draft == true
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
await github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '👋 Thank you for your draft pull request! Do you know that you can use `[ci skip]` or `[skip ci]` in your commit messages to skip running continuous integration tests until you are ready?'
})
- name: Special comment
uses: pllim/action-special_pr_comment@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}