added gliner-spacy to universe (#13417) [ci skip] #262
Workflow file for this run
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: spaCy universe project alert | |
on: | |
pull_request_target: | |
paths: | |
- "website/meta/universe.json" | |
jobs: | |
build: | |
if: github.repository_owner == 'explosion' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
PR_NUMBER: ${{github.event.number}} | |
run: | | |
echo "$GITHUB_CONTEXT" | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
- name: Install Bernadette app dependency and send an alert | |
env: | |
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }} | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
CHANNEL: "#alerts-universe" | |
run: | | |
pip install slack-sdk==3.17.2 aiohttp==3.8.1 | |
echo "$CHANNEL" | |
python .github/spacy_universe_alert.py "$GITHUB_CONTEXT" |