|
42 | 42 | steps: |
43 | 43 | # ... |
44 | 44 | - name: Gets an issue |
45 | | - id: gets-an-issue # only necessary if using this action's output(s) |
| 45 | + id: issues-get # only necessary if using this action's output(s) |
46 | 46 | uses: bitwizeshift/actions-github/issues/get@v1 |
47 | 47 | with: |
48 | 48 | # Optional inputs |
|
53 | 53 | retry-exempt-status-codes: RETRY_EXEMPT_STATUS_CODES |
54 | 54 | # ... |
55 | 55 | - name: Uses "Gets an issue" Outputs |
56 | | - uses: example-actions/use-gets-an-issue@v3 # illustrative |
| 56 | + uses: example-actions/use-issues-get@v3 # illustrative |
57 | 57 | with: |
58 | | - use-issue-api-url: ${{ steps.gets-an-issue.outputs.issue-api-url }} |
59 | | - use-labels: ${{ steps.gets-an-issue.outputs.labels }} |
60 | | - use-body: ${{ steps.gets-an-issue.outputs.body }} |
61 | | - use-state: ${{ steps.gets-an-issue.outputs.state }} |
62 | | - use-state-reason: ${{ steps.gets-an-issue.outputs.state-reason }} |
63 | | - use-issue-number: ${{ steps.gets-an-issue.outputs.issue-number }} |
64 | | - use-issue-url: ${{ steps.gets-an-issue.outputs.issue-url }} |
65 | | - use-assignees: ${{ steps.gets-an-issue.outputs.assignees }} |
66 | | - use-title: ${{ steps.gets-an-issue.outputs.title }} |
67 | | - use-locked: ${{ steps.gets-an-issue.outputs.locked }} |
| 58 | + use-assignees: ${{ steps.issues-get.outputs.assignees }} |
| 59 | + use-body: ${{ steps.issues-get.outputs.body }} |
| 60 | + use-issue-api-url: ${{ steps.issues-get.outputs.issue-api-url }} |
| 61 | + use-issue-number: ${{ steps.issues-get.outputs.issue-number }} |
| 62 | + use-issue-url: ${{ steps.issues-get.outputs.issue-url }} |
| 63 | + use-labels: ${{ steps.issues-get.outputs.labels }} |
| 64 | + use-locked: ${{ steps.issues-get.outputs.locked }} |
| 65 | + use-state: ${{ steps.issues-get.outputs.state }} |
| 66 | + use-state-reason: ${{ steps.issues-get.outputs.state-reason }} |
| 67 | + use-title: ${{ steps.issues-get.outputs.title }} |
68 | 68 | ``` |
0 commit comments