generated from probot/example-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7f0082f
commit d6cf115
Showing
28 changed files
with
100,395 additions
and
133,500 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
* text=auto | ||
* text=auto eol=lf | ||
|
||
dist/** -diff linguist-generated=true | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,13 @@ | ||
{ | ||
$schema: 'https://docs.renovatebot.com/renovate-schema.json', | ||
extends: ['github>bfra-me/renovate-config#v3.5.2', 'github>bfra-me/renovate-config:internal.json5#v3.5.2'], | ||
extends: [ | ||
'github>bfra-me/renovate-config#v3', | ||
'github>bfra-me/renovate-config:internal.json5#v3', | ||
'github>sanity-io/renovate-config:semantic-commit-type', | ||
'security:openssf-scorecard', | ||
'npm:unpublishSafe', | ||
], | ||
automergeType: 'pr', | ||
packageRules: [ | ||
{ | ||
matchPackageNames: ['@types/node', 'node', 'nodejs/node'], | ||
|
@@ -10,15 +17,26 @@ | |
matchPackageNames: ['npm'], | ||
constraintsFiltering: 'strict', | ||
}, | ||
{ | ||
matchDepNames: ['python'], | ||
allowedVersions: '<=3.12', | ||
}, | ||
{ | ||
description: 'Enable SemVer digest pinning of @bfra-me GitHub actions, reusable workflows, and Renovate config presets.', | ||
matchDatasources: ['github-tags'], | ||
matchPackageNames: ['@bfra.me/**', 'bfra-me/**'], | ||
updatePinnedDependencies: false, | ||
}, | ||
{ | ||
description: 'Enable SemVer digest pinning of @bfra-me GitHub actions, reusable workflows, and Renovate config presets.', | ||
matchDatasources: ['github-tags'], | ||
matchPackageNames: ['@bfra.me/**', 'bfra-me/**'], | ||
matchUpdateTypes: ['major'], | ||
updatePinnedDependencies: true, | ||
}, | ||
], | ||
postUpgradeTasks: { | ||
commands: [ | ||
'npm install -g [email protected]', | ||
'pnpm install --frozen-lockfile --ignore-scripts', | ||
'git checkout -- .npmrc', | ||
'pnpm run build', | ||
'pnpm run format', | ||
], | ||
commands: ['pnpm bootstrap', 'pnpm fix', 'pnpm build', 'pnpm format'], | ||
executionMode: 'branch', | ||
}, | ||
} |
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
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
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
node 22.11.0 | ||
pnpm 9.14.2 | ||
python 3.12.7 |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/** | ||
* @param {import('probot').Probot} app | ||
*/ | ||
module.exports = (app) => { | ||
app.on('issues.opened', async (context) => { | ||
return context.octokit.issues.createComment(context.issue({body: 'Hello, World!'})); | ||
}); | ||
}; | ||
export default app => { | ||
app.on('issues.opened', async context => { | ||
return context.octokit.issues.createComment(context.issue({body: 'Hello, World!'})) | ||
}) | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.