Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 53 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,55 @@
# Changelog

This changelog is automatically generated. Do not edit manually!

## Unreleased
- chore: bootstrap releases for path: . ([#81](https://github.com/grafana/github-api-commit-action/pull/81)) - [@abannachGrafana](https://github.com/abannachGrafana) - 2025-04-21
- test: fix conditionals for test cases ([#77](https://github.com/grafana/github-api-commit-action/pull/77)) - [@abannachGrafana](https://github.com/abannachGrafana) - 2025-04-10
- chore: trigger tests via workflow call, dispatch or push to main ([#75](https://github.com/grafana/github-api-commit-action/pull/75)) - [@abannachGrafana](https://github.com/abannachGrafana) - 2025-04-10
- chore: update workflows with secrets ([#72](https://github.com/grafana/github-api-commit-action/pull/72)) - [@abannachGrafana](https://github.com/abannachGrafana) - 2025-04-10
- fix: test workflow use default checkout ref for pull request ([#68](https://github.com/grafana/github-api-commit-action/pull/68)) - [@abannachGrafana](https://github.com/abannachGrafana) - 2025-04-09
- fix: pr create steps ([#61](https://github.com/grafana/github-api-commit-action/pull/61)) - [@abannachGrafana](https://github.com/abannachGrafana) - 2025-02-13
- feat(action): add ability to use checked out repo instead of action context repo - [@abannachGrafana](https://github.com/abannachGrafana) - 2023-09-19
- chore(cleanup): Readme updates, remove unused code ([#6](https://github.com/grafana/github-api-commit-action/pull/6)) - [@abannachGrafana](https://github.com/abannachGrafana) - 2023-04-25
- feat(action): Add logging to action and improve workflow ([#4](https://github.com/grafana/github-api-commit-action/pull/4)) - [@abannachGrafana](https://github.com/abannachGrafana) - 2023-04-24
## [0.3.1] - 2025-02-13

### 🐛 Bug Fixes

- Validate tokenized urls (#59)
- Pr create steps (#61)

### ⚙️ Miscellaneous Tasks

- Update commit hash in readme; add test for delete (#58)
- Add auto update and merge workflows (#60)
- Update changelog [bot] (#62)

## [0.3.0] - 2025-02-10

### 💼 Other

- [**breaking**] Convert action to use graphql mutation (#57)

## [0.2.0] - 2023-09-19

### 🚀 Features

- Add ability to commit to checked out repo instead of context repo

### ⚙️ Miscellaneous Tasks

- *(version)* Update version in readme and update changelog
- Update readme, changelog and commit message in update changelog
- Fix linting error and rebuild action

## [0.1.0] - 2023-04-25

### 🚀 Features

- *(wip)* Begin pulling in pieces of action
- *(commit-flow)* Add in remaining steps to commit files
- *(github)* Use * as github instead of default import
- *(exec)* Use * as exec instead of default export
- *(cwd)* Remove cwd option as it said it doesnt exist. Not sure if its considered relative or not
- *(cd)* Remove cd because it wasn't available
- *(action)* Add logging to action and improve workflow (#4)

### ⚙️ Miscellaneous Tasks

- *(build)* Disable codeql until repo is public, build action
- *(pwd)* Add pwd command to see what the directory structure looks like
- *(pwd)* Add realpath to see what the path of the files are
- *(path)* Print out realpath of file
- *(rootDir)* Remove reference to rootdir to see if action can see files
- *(debug)* Add debug logging
- *(trim)* Trim the output of any execs
- *(cleanup)* Readme updates, remove unused code (#6)
15 changes: 14 additions & 1 deletion release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,20 @@
"bump-minor-pre-major": false,
"bump-patch-for-minor-pre-major": false,
"draft": false,
"prerelease": false
"prerelease": false,
"changelog-sections": [
{ "type":"feat", "section": "🚀 Features" },
{ "type":"feature", "section": "🚀 Features" },
{ "type":"fix", "section": "🐛 Bug Fixes" },
{ "type":"doc", "section": "📚 Documentation"},
{ "type":"docs", "section": "📚 Documentation" },
{ "type":"perf", "section": "⚡ Performance" },
{ "type":"refactor", "section": "🚜 Refactor" },
{ "type":"style", "section": "🎨 Styling" },
{ "type":"test", "section": "🧪 Testing" },
{ "type":"chore", "section": "⚙️ Miscellaneous Tasks" },
{ "type":"deps", "section": "📦 Dependency Updates" }
]
}
},
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
Expand Down
Loading