Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
htrgouvea authored Dec 25, 2024
1 parent b8bc3be commit ef4d482
Showing 1 changed file with 6 additions and 13 deletions.
19 changes: 6 additions & 13 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,35 +7,28 @@ branding:

inputs:
dependency:
description: 'Check if repositories has dependabot.yml file'
description: 'Check if repositories have dependabot.yml file'
required: false
default: true
default: 'true'
maintained:
description: 'Get alerts about repositories with a last commit date greater than 90 days old'
required: false
default: true
default: 'true'
metrics:
description: 'Extract some metrics based on GHAS'
required: false
default: true
default: 'true'
token:
description: 'Token to access the GitHub API'
required: true
default: ${{ github.token }}
org:
description: 'Github organization to interact with'
description: 'GitHub organization to interact with'
required: true
default: ${{ github.repository_owner }}


runs:
using: "composite"
steps:
- shell: bash
env:
org: ${{ inputs.dependency }}
GITHUB_TOKEN: ${{ secrets.TOKEN }}

- name: Run sentra
run: |
docker run ghcr.io/instriq/sentra/sentra:latest \
--org ${{ inputs.org }} \
Expand Down

0 comments on commit ef4d482

Please sign in to comment.