We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d5c622 commit 29a0b96Copy full SHA for 29a0b96
Dockerfile
@@ -0,0 +1,5 @@
1
+FROM alpine:3.13
2
+
3
+COPY entrypoint.sh /entrypoint.sh
4
5
+ENTRYPOINT ["/entrypoint.sh"]
action.yml
@@ -0,0 +1,14 @@
+name: 'DB migration with DLE'
+description: 'Run DB migrations with the DLE'
+inputs:
+ owner:
+ description: 'The owner of the repository to check'
6
+ required: true
7
+outputs:
8
+ status:
9
+ description: 'The result of CI checks'
10
+runs:
11
+ using: 'docker'
12
+ image: 'Dockerfile'
13
+ args:
14
+ - ${{ inputs.owner }}
entrypoint.sh
@@ -0,0 +1,6 @@
+#!/bin/sh -l
+echo "Owner $1"
+status="OK"
+echo "::set-output name=status::$status"
0 commit comments