remove unneeded secret

This commit is contained in:
Martin Dimitrov 2026-03-06 11:33:35 -08:00
parent dc2331134e
commit b131153d58
2 changed files with 4 additions and 8 deletions

View File

@ -12,9 +12,7 @@ on:
ref:
required: true
type: string
secrets:
token:
required: true
secrets: []
outputs:
is_changed:
description: "'true' if the input files are changed otherwise 'false'"
@ -32,7 +30,7 @@ jobs:
with:
repository: ${{ inputs.repository }}
ref: ${{ inputs.ref }}
token: ${{ secrets.token }}
token: ${{ github.token }}
- name: Get changed files in the doorman-homeassistant folder
id: changed-files-specific

View File

@ -12,9 +12,7 @@ on:
image_name:
required: true
type: string
secrets:
token:
required: true
secrets: []
jobs:
docker:
@ -28,7 +26,7 @@ jobs:
with:
repository: ${{ inputs.repository }}
ref: ${{ inputs.ref }}
token: ${{ secrets.token }}
token: ${{ github.token }}
- name: Build Docker image
run: docker buildx build . -t 192.168.1.150:9120/${{ inputs.image_name }}:latest