Skip to content

Add EarthScienceToolkit (about 100 specific earth science tools) from Earth-Agent Paper #27

Add EarthScienceToolkit (about 100 specific earth science tools) from Earth-Agent Paper

Add EarthScienceToolkit (about 100 specific earth science tools) from Earth-Agent Paper #27

name: PR Label Automation
on:
pull_request:
types: [opened]
permissions:
pull-requests: write
jobs:
add-labels:
runs-on: ubuntu-latest
steps:
- name: Add Review Required label
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ['Review Required']
})