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
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"actions/validate-policy-bot-config": "1.1.1",
"actions/trigger-argo-workflow": "1.1.0",
"actions/setup-jrsonnet": "1.0.1",
"actions/find-pr-for-commit": "1.0.0",
"actions/find-pr-for-commit": "1.0.1",
"actions/remove-checkout-credentials": "0.1.0",
"actions/dependabot-auto-triage": "1.0.0",
"actions/get-latest-workflow-artifact": "0.1.0"
Expand Down
14 changes: 14 additions & 0 deletions actions/find-pr-for-commit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [1.0.1](https://github.com/grafana/shared-workflows/compare/find-pr-for-commit-v1.0.0...find-pr-for-commit/v1.0.1) (2025-06-04)


### 📝 Documentation

* **multiple-actions:** move permissions to job level in workflow examples ([49c90b1](https://github.com/grafana/shared-workflows/commit/49c90b10fcbce463983bed45932cf468b8bd06ce))
* **multiple-actions:** move permissions to job level in workflows ([#969](https://github.com/grafana/shared-workflows/issues/969)) ([49c90b1](https://github.com/grafana/shared-workflows/commit/49c90b10fcbce463983bed45932cf468b8bd06ce))
* update all readmes to replace hyphen with slash ([#1008](https://github.com/grafana/shared-workflows/issues/1008)) ([472df76](https://github.com/grafana/shared-workflows/commit/472df76fb1cbb92a17fb9e055bdf0d1399109ee3))


### 🔧 Miscellaneous Chores

* **main:** release push-to-gar-docker 0.3.0 ([#794](https://github.com/grafana/shared-workflows/issues/794)) ([a7bc536](https://github.com/grafana/shared-workflows/commit/a7bc5367c4a91c389526d58839d8f6224dba4dcc))

## 1.0.0 (2025-01-29)


Expand Down
8 changes: 4 additions & 4 deletions actions/find-pr-for-commit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
steps:
- name: Find PR for current commit
id: find-pr
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.0
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.1

- name: Use PR number
run: echo "PR Number is ${{ steps.find-pr.outputs.pr_number }}"
Expand All @@ -68,7 +68,7 @@ jobs:
steps:
- name: Find PR for specific commit
id: find-pr
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.0
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.1
with:
commitrev: "1234567890abcdef1234567890abcdef12345678"

Expand All @@ -92,7 +92,7 @@ jobs:
steps:
- name: Find PR for named revision
id: find-pr
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.0
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.1
with:
commitrev: "HEAD~2"

Expand All @@ -117,7 +117,7 @@ jobs:
steps:
- name: Find PR for commit in another repository
id: find-pr
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.0
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.1
with:
owner: "grafana"
repo: "grafana"
Expand Down
Loading