Skip to content
Draft
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.2.1",
"actions/setup-jrsonnet": "1.0.2",
"actions/find-pr-for-commit": "1.0.1",
"actions/find-pr-for-commit": "1.0.2",
"actions/remove-checkout-credentials": "0.1.0",
"actions/dependabot-auto-triage": "1.1.1",
"actions/get-latest-workflow-artifact": "0.2.0",
Expand Down
7 changes: 7 additions & 0 deletions actions/find-pr-for-commit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.0.2](https://github.com/grafana/shared-workflows/compare/find-pr-for-commit/v1.0.1...find-pr-for-commit/v1.0.2) (2025-12-11)


### 🔧 Miscellaneous Chores

* **deps:** update octokit/graphql-action action to v3 ([#1497](https://github.com/grafana/shared-workflows/issues/1497)) ([273c085](https://github.com/grafana/shared-workflows/commit/273c085fd3c84eb8f2ad9a1d5572818bc2040061))

## [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)


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.1
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.2

- 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.1
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.2
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.1
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.2
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.1
uses: grafana/shared-workflows/actions/find-pr-for-commit@find-pr-for-commit/v1.0.2
with:
owner: "grafana"
repo: "grafana"
Expand Down