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

View File

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