Skip to content

Commit

Permalink
Merge pull request #2286 from newrelic/supportability_metrics
Browse files Browse the repository at this point in the history
Add supportability enabled/disabled metrics
  • Loading branch information
hannahramadan authored Oct 27, 2023
2 parents d0f2f49 + ec33d21 commit 3cff631
Show file tree
Hide file tree
Showing 320 changed files with 17,674 additions and 1,478 deletions.
26 changes: 26 additions & 0 deletions .build_ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
.github/
.gitignore
.project
.rubocop.yml
.rubocop_todo.yml
.simplecov
.snyk
.yardopts
Brewfile
CONTRIBUTING.md
Dockerfile
DOCKER.md
docker-compose.yml
config/
config.dot
infinite_tracing/
Guardfile
lefthook.yml
log/
README.md
test/
lib/tasks/bump_version.rb
lib/tasks/coverage_report.rb
lib/tasks/multiverse.rake
lib/tasks/multiverse.rb
lib/tasks/tests.rb
2 changes: 1 addition & 1 deletion .github/actions/annotate/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ A pre-commit hook is provided that can help keep dist/index.js in tune with loca
# Using Node as a REPL

If you're developing or working on the index.js script, it can be handy to try out stuff
locally. To do that, use Node to start up a REPL shell by running it from the action's folder:
locally. To do that, use Node to start-up a REPL shell by running it from the action's folder:

```
cd .github/workflow/actions/annotate
Expand Down
30 changes: 30 additions & 0 deletions .github/actions/issue_closer/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
"indent": [
"error",
2
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"single"
],
"semi": [
"error",
"always"
]
}
}
12 changes: 12 additions & 0 deletions .github/actions/issue_closer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,15 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
```
## Contributing
- Clone the repo containing the action
- Make sure you have Node.js (the action was originally tested with version 18 LTS) and Yarn installed
- In the directory containing this `README.md` file and the `package.json` file, run `yarn install`
- Make your desired changes to `index.js`
- note: ignore `dist/index.js`, as it is only intended for use by GitHub Actions
- Test your changes with `node index.js` and/or `yarn run test`
- Lint your changes with `yarn run lint`
- Regenerate the distribution file `dist/index.js` by running `yarn run package`
- Submit a PR with your changes
2 changes: 1 addition & 1 deletion .github/actions/issue_closer/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ inputs:
required: true
runs:
using: 'node16'
main: 'index.js'
main: 'dist/index.js'
Loading

0 comments on commit 3cff631

Please sign in to comment.