Skip to content

Docs: remove more mentions of the old action (#13171) #3714

Docs: remove more mentions of the old action (#13171)

Docs: remove more mentions of the old action (#13171) #3714

Workflow file for this run

name: CI
on:
push:
branches:
- main
permissions:
contents: read
jobs:
build:
permissions:
contents: none
runs-on: ubuntu-latest
steps:
- name: Trigger tests in readthedocs-corporate
env:
CIRCLECI_USER_TOKEN: ${{ secrets.CIRCLECI_USER_TOKEN }}
run: |
curl --request POST \
--silent --output /dev/null \
--url https://circleci.com/api/v2/project/gh/readthedocs/readthedocs-corporate/pipeline \
--user "${CIRCLECI_USER_TOKEN}:" \
--header 'content-type: application/json' \
--data '{"branch": "main", "parameters":{"tests_only": true}}'
- name: Trigger tests in readthedocs-ext
env:
CIRCLECI_USER_TOKEN: ${{ secrets.CIRCLECI_USER_TOKEN }}
run: |
curl --request POST \
--silent --output /dev/null \
--url https://circleci.com/api/v2/project/gh/readthedocs/readthedocs-ext/pipeline \
--user "${CIRCLECI_USER_TOKEN}:" \
--header 'content-type: application/json' \
--data '{"branch": "main", "parameters":{"tests_only": true}}'