GitHub Action
Get Milestone Data
v1.0.1
Latest version
Action to get milestone data
Create a workflow .yml file in your .github/workflows directory. An example workflow is available below. For more information, reference the GitHub Help Documentation for Creating a workflow file.
repository
: Github repository. Add the Github context value: github.repository
. (required)
milestone
: Milestone id, not title please. (required)
data
: Milestone data JSON.
- name: Get milestone data
uses: Beakyn/[email protected]
id: milestone-data
env:
GITHUB_TOKEN: ${{ github.token }}
with:
repository: ${{ github.repository }}
milestone: 1
- name: Debug milestone title value
run: echo "Title: ${{ fromJson(steps.milestone-data.outputs.data).title }}"