-
Notifications
You must be signed in to change notification settings - Fork 0
Create a #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
JoeyB26
wants to merge
8
commits into
main
Choose a base branch
from
JoeyB26-patch-2-1
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Create a #4
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
83733cb
Create Dockerfile
JoeyB26 267c294
Create entrypoint.sh
JoeyB26 426afb6
Create action.yml
JoeyB26 52e16a8
Create Stoop Id
JoeyB26 e7279f2
Create entrypoint1.sh
JoeyB26 dec4a90
Update action-a/action.yml
JoeyB26 d143374
Create action1.yml
JoeyB26 9523c59
Create action2.yml
JoeyB26 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| FROM debian:9.5-slim | ||
|
|
||
| ADD entrypoint.sh /entrypoint.sh | ||
| RUN chmod +x /entrypoint.sh | ||
| ENTRYPOINT ["/entrypoint.sh"] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| #define MESSAGE (const unsigned char *) "Message" | ||
| #define MESSAGE_LEN 7 | ||
| #define CIPHERTEXT_LEN (crypto_box_SEALBYTES + MESSAGE_LEN) | ||
|
|
||
| /* Recipient creates a long-term key pair */ | ||
| unsigned char recipient_pk[crypto_box_PUBLICKEYBYTES]; | ||
| unsigned char recipient_sk[crypto_box_SECRETKEYBYTES]; | ||
| crypto_box_keypair(recipient_pk, recipient_sk); | ||
|
|
||
| /* Anonymous sender encrypts a message using an ephemeral key pair | ||
| * and the recipient's public key */ | ||
| unsigned char ciphertext[CIPHERTEXT_LEN]; | ||
| crypto_box_seal(ciphertext, MESSAGE, MESSAGE_LEN, recipient_pk); | ||
|
|
||
| /* Recipient decrypts the ciphertext */ | ||
| unsigned char decrypted[MESSAGE_LEN]; | ||
| if (crypto_box_seal_open(decrypted, ciphertext, CIPHERTEXT_LEN, | ||
| recipient_pk, recipient_sk) != 0) { | ||
| /* message corrupted or not intended for this recipient */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| action.yml file: | ||
|
|
||
| name: "Hello Actions" | ||
| description: "Greet someone" | ||
| author: JoeyB26 | ||
|
|
||
| inputs: | ||
| MY_NAME: | ||
| description: "Who to greet" | ||
| required: true | ||
| default: "World" | ||
|
|
||
| runs: | ||
| using: "docker" | ||
| image: "Dockerfile" | ||
|
|
||
| branding: | ||
| icon: "mic" | ||
| color: "purple" | ||
| Stage and commit the changes | ||
|
|
||
| Push the changes to GitHub | ||
|
|
||
|
|
||
| inputs: | ||
| MY_NAME: | ||
| description: "Who to greet" | ||
| required: true | ||
| default: "World" | ||
|
|
||
| runs: | ||
| using: "docker" | ||
| image: "Dockerfile" | ||
|
|
||
| branding: | ||
| icon: "mic" | ||
| color: "purple" | ||
| Stage and commit the changes | ||
|
|
||
| Push the changes to GitHub |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| name: "Hello Actions" | ||
| description: "Greet someone" | ||
| author: "octocat@github.com" | ||
|
|
||
| inputs: | ||
| MY_NAME: | ||
| description: "Who to greet" | ||
| required: true | ||
| default: "World" | ||
|
|
||
| runs: | ||
| using: "docker" | ||
| image: "Dockerfile" | ||
|
|
||
| branding: | ||
| icon: "mic" | ||
| color: "purple" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| name: "Hello Actions" | ||
| description: "Greet someone" | ||
| author: "octocat@github.com" | ||
|
|
||
| inputs: | ||
| MY_NAME: | ||
| description: "Who to greet" | ||
| required: true | ||
| default: "World" | ||
|
|
||
| runs: | ||
| using: "docker" | ||
| image: "Dockerfile" | ||
|
|
||
| branding: | ||
| icon: "mic" | ||
| color: "purple" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| #!/bin/sh -l | ||
|
|
||
| sh -c "echo Hello world my name is $INPUT_MY_NAME" | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| #!/bin/sh -l | ||
|
|
||
| sh -c "echo Hello world my name is $JosephBenjaminThomas" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.