Skip to content

no link

no link #14

Workflow file for this run

name: Publish package on NPM
on: push
jobs:
repro1:
runs-on: ubuntu-latest
steps:
- name: Reproduction
uses: actions/github-script@v7
with:
script: |
await core.summary
.addHeading('Draft release created')
.addRaw('Find it here: ')
.addBreak()
.addBreak()
.addRaw('Copy the release notes below, and paste them inside your release PR.')
.addBreak()
.addBreak()
.addCodeBlock(`<!-- Release notes generated using configuration in .github/release.yml at v0.0.1 -->\n\n## What's Changed\n### Documentation\n* [docs] Replace \`APP\` with \`App\` by @Drarig29 in https:/DataDog/datadog-ci/pull/1198\n### Chores\n* [chores] Update labels and setup automatic release notes by @Drarig29 in https:/DataDog/datadog-ci/pull/1217\n* [chores] Improve release process by @Drarig29 in https:/DataDog/datadog-ci/pull/1219\n* [chores] Move \`changelog\` to \`.github\` folder by @Drarig29 in https:/DataDog/datadog-ci/pull/1225\n* [chores] Exclude \`release\` label from release notes by @Drarig29 in https:/DataDog/datadog-ci/pull/1226\n* [chores] Add \`needs:\` to \`npm-publish\` by @Drarig29 in https:/DataDog/datadog-ci/pull/1227\n### CI Visibility\n* [CIVIS] Add contains deployment tag to deployment mark command by @rodrigo-roca in https:/DataDog/datadog-ci/pull/1216\n* [junit] Tolerate \`--skip-git-metadata-upload\` as boolean flag by @Drarig29 in https:/DataDog/datadog-ci/pull/1223\n### Static Analysis\n* [STAL-998] Add metadata validation in SBOM/SARIF upload commands by @dastrong in https:/DataDog/datadog-ci/pull/1221\n### Synthetics\n* [SYNTH-13000] Fix bug where Test Config was not being used when a public_id was already defined by @teodor2312 in https:/DataDog/datadog-ci/pull/1214\n* [synthetics] Make results from previous CI runs dimmer by @Drarig29 in https:/DataDog/datadog-ci/pull/1220\n\n## New Contributors\n* @dastrong made their first contribution in https:/DataDog/datadog-ci/pull/1221\n\n**Full Changelog**: https:/DataDog/datadog-ci/compare/v2.32.0...v0.0.1`, 'markdown')
.write()
fix-example:
runs-on: ubuntu-latest
steps:
- name: Fix example
uses: actions/github-script@v7
with:
script: |
await core.summary
.addCodeBlock('hello world', 'markdown')
.addCodeBlock(`<!-- An html comment -->\n\n# A markdown title`, 'markdown')
.write()