[Backport 2.8] Support application/geo+json #3678
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: Add message on pull requests with the related examples | |
on: | |
pull_request_target: | |
types: | |
- opened | |
jobs: | |
all: | |
name: Add message on pull requests with the related examples | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 2 | |
steps: | |
- run: npm install --production @actions/github | |
- run: | | |
echo " | |
const github = require('@actions/github'); | |
async function run() { | |
// Get client and context | |
const client = new github.getOctokit(process.env.GITHUB_TOKEN); | |
await client.rest.pulls.createReview({ | |
owner: github.context.issue.owner, | |
repo: github.context.issue.repo, | |
pull_number: github.context.issue.number, | |
body: [ | |
\`Examples: https://camptocamp.github.io/ngeo/\${process.env.GITHUB_HEAD_REF}/examples/\`, | |
\`Storybook: https://camptocamp.github.io/ngeo/\${process.env.GITHUB_HEAD_REF}/storybook/\`, | |
\`API help: https://camptocamp.github.io/ngeo/\${process.env.GITHUB_HEAD_REF}/api/apihelp/apihelp.html\`, | |
\`API documentation: https://camptocamp.github.io/ngeo/\${process.env.GITHUB_HEAD_REF}/apidoc/\`, | |
].join('\n'), | |
event: 'COMMENT' | |
}); | |
} | |
run(); | |
" > pr-message.js | |
if: github.actor != 'dependabot[bot]' | |
- run: | | |
echo " | |
const github = require('@actions/github'); | |
async function run() { | |
// Get client and context | |
const client = new github.getOctokit(process.env.GITHUB_TOKEN); | |
await client.rest.pulls.createReview({ | |
owner: github.context.issue.owner, | |
repo: github.context.issue.repo, | |
pull_number: github.context.issue.number, | |
body: [ | |
\"This build can't have the Chromatic status because the secrets are missing.\", | |
\"To get the Chromatic status check you should assign one label, e.-g. \`get-chromatic-on-dependabot\`.\", | |
\"You can also check the status on https://www.chromatic.com/pullrequests?appId=612f928164063b003a629e5b.\" | |
].join('\n'), | |
event: 'COMMENT' | |
}); | |
} | |
run(); | |
" > pr-message.js | |
if: github.actor == 'dependabot[bot]' | |
- run: node pr-message.js | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |