We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e97b60a commit 5d15149Copy full SHA for 5d15149
Dockerfile
@@ -1,6 +1,8 @@
1
# Container image that runs your code
2
FROM ubuntu
3
RUN apt update && apt install -y python3 curl
4
+RUN mkdir /tmp
5
+
6
# Copies your code file from your action repository to the filesystem path `/` of the container
7
COPY entrypoint.sh /entrypoint.sh
8
action.yml
@@ -1,6 +1,10 @@
# action.yml
name: 'AutoBotYamlFileSetter'
description: "sets QA group in autobot yaml file"
+inputs:
+ token: # id of input
+ description: 'secret github token'
+ required: true
runs:
9
using: 'docker'
10
image: 'Dockerfile'
0 commit comments