Skip to content

Commit

Permalink
Fixing metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
jbosse committed Jul 10, 2024
1 parent c93d028 commit 5c70e2b
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 25 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,21 @@ jobs:
id: npm-ci-test
run: npm run ci-test

test-action:
name: GitHub Actions Test
runs-on: ubuntu-latest
# test-action:
# name: GitHub Actions Test
# runs-on: ubuntu-latest

steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
# steps:
# - name: Checkout
# id: checkout
# uses: actions/checkout@v4

- name: Test Local Action
id: test-action
uses: ./
with:
milliseconds: 1000
# - name: Test Local Action
# id: test-action
# uses: ./
# with:
# milliseconds: 1000

- name: Print Output
id: output
run: echo "${{ steps.test-action.outputs.time }}"
# - name: Print Output
# id: output
# run: echo "${{ steps.test-action.outputs.time }}"
46 changes: 38 additions & 8 deletions action.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,48 @@
name: 'The name of your action here'
description: 'Provide a description here'
author: 'Your name or organization here'
name: 'dependabot-tickets'
description:
'This action creates a FogBugz and AgilePlace Planview ticket for Dependabot pull requests.'
author: 'Ankura Consulting Group, LLC'

# Define your inputs here.
inputs:
milliseconds:
description: 'Your input description here'
fogbugz_api_url:
description: 'The URL of your FogBugz API'
required: true
default: '1000'
fogbugz_token:
description: 'Your FogBugz API token'
required: true
fogbugz_project:
description: 'The name of your FogBugz Project'
required: true
fogbugz_category:
description: 'The name of your FogBugz Category'
required: true
planview_api_url:
description: 'The URL of your Planview API'
required: true
planview_auth:
description: 'Your Planview API token'
required: true
planview_board_id:
description: 'The ID of your Planview Board'
required: true
planview_lane_id:
description: 'The ID of your Planview Lane to put the tickets'
required: true
planview_type_id:
description: 'The type of ticket to create'
required: true
users:
description: 'The user making the pull request. Set to "dependabot"'
required: true
default: 'dependabot'

# Define your outputs here.
outputs:
time:
description: 'Your output description here'
fogbugz_id:
description: 'The FogBugz case number created'
planview_id:
description: 'The Planview ticket id created'

runs:
using: node20
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "dependabot-tickets",
"description": "This action creates a FogBugz and AgilePlace Planview ticket for Dependabot pull requests.",
"version": "0.2.0",
"author": " Ankura Consulting Group, LLC",
"version": "0.2.1",
"author": "Ankura Consulting Group, LLC",
"private": true,
"homepage": "https://github.com/actions/javascript-action#readme",
"repository": {
Expand Down

0 comments on commit 5c70e2b

Please sign in to comment.