mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-10 13:04:04 -08:00
cc2ea390ee
Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.1 to 3.5.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](83b7061638...8e5e7e5ab8
)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
62 lines
2.1 KiB
YAML
62 lines
2.1 KiB
YAML
name: Close Themes PR
|
|
on:
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code 👋
|
|
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab
|
|
- name: Check and close 🔐
|
|
uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410
|
|
with:
|
|
github-token: ${{ secrets.GH_PAT }}
|
|
script: |
|
|
const { repo: { owner, repo } } = context;
|
|
const pr = context.payload.pull_request;
|
|
|
|
const response = await github.rest.pulls.listFiles({
|
|
owner, repo,
|
|
pull_number: pr.number
|
|
});
|
|
|
|
if (response.status !== 200) {
|
|
console.log('Could not fetch files');
|
|
return;
|
|
}
|
|
|
|
let hasThemeAdditions = false;
|
|
for (const file of response.data) {
|
|
const name = file.filename
|
|
console.log(`File: ${name}`);
|
|
if (file.status === 'added' && name.includes('themes/')) {
|
|
console.log(`File: ${name} is a theme addition`);
|
|
hasThemeAdditions = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!hasThemeAdditions) {
|
|
console.log('No theme additions found.');
|
|
return;
|
|
}
|
|
|
|
const body = `👋 @${pr.user.login}, theme aditions are no longer accepted due to the ever growing set. We do however accept showcasing your custom theme in the [🎨 Themes section](https://github.com/JanDeDobbeleer/oh-my-posh/discussions/categories/themes) or [themes channel](https://discord.com/channels/1023597603331526656/1055533233309233252) on Discord.`
|
|
|
|
console.log(`Adding comment: ${body}`);
|
|
await github.rest.issues.createComment({
|
|
owner, repo,
|
|
issue_number: pr.number,
|
|
body,
|
|
});
|
|
|
|
console.log(`Closing pull request: ${pr.html_url}`);
|
|
await github.rest.pulls.update({
|
|
owner, repo,
|
|
pull_number: pr.number,
|
|
state: "closed",
|
|
});
|