mirror of
https://github.com/ipfs/awesome-ipfs.git
synced 2024-11-20 11:28:35 -05:00
6d5eef146a
* chore: ignore files created by awesome_bot * feat: auto-update README.md when PRs are created * feat: use danger to post awesome_bot results on PRs * chore: wut * Update pull_requests.yml * chore: fake-test * adjust branch used by github-push-action * chore: ensure checkout uses the branch * chore: update README.md * chore: modify dangerfile and workflow ordering * remove fake addition to videos.yaml * chore: update README.md * chore: rename pull_requests.yml * temp: always display awesomeBot results * Revert "temp: always display awesomeBot results" This reverts commitacaef1f4f2
. * chore(deps): install danger as devDep * feat: cache node_modules and readme * Update pull_requests.yml * chore: remove ad-m/github-push-action see https://github.com/ad-m/github-push-action/issues/104 * tmp: PR-demo * Rebuild * Revert "tmp: PR-demo" This reverts commit8bed1326f0
. * Rebuild * fix: no need to push readme update * fix: no need to push readme update readme is updated during 'Rebuild' commit from data.yml * chore: run danger via npm script instead of npx * feat: remove replace circleci cron with github action this github action should open a PR removing broken links automatically Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: GitHub Action <action@github.com>
30 lines
877 B
JavaScript
30 lines
877 B
JavaScript
const { danger, markdown, fail, warn, message } = require('danger')
|
|
const awesomeBotResults = require('./ab-results-README.md-markdown-table.json')
|
|
|
|
const githubMetadata = danger.git.fileMatch('.github/**')
|
|
const yamlData = danger.git.fileMatch('data/**')
|
|
const scripts = danger.git.fileMatch('scripts/**')
|
|
const src = danger.git.fileMatch('src/**')
|
|
|
|
if (githubMetadata.edited) {
|
|
message('Changes were made within the .github folder.')
|
|
}
|
|
|
|
if (yamlData.edited) {
|
|
message('YAML data files were edited.')
|
|
/**
|
|
* Only display awesomeBot results if the data yaml used to generate the readme have been modified.
|
|
*/
|
|
if (awesomeBotResults.error) {
|
|
fail(awesomeBotResults.title)
|
|
markdown(awesomeBotResults.message)
|
|
}
|
|
}
|
|
|
|
if (scripts.edited) {
|
|
warn('Changes were made to the scripts folder.')
|
|
}
|
|
|
|
if (src.edited) {
|
|
warn('Changes were made to the src folder.')
|
|
}
|