Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: upload a malicious artifact

on: [pull_request]

jobs:
job:
runs-on: ubuntu-latest
steps:
- run: echo "malicious payload" >> malicious
- uses: actions/upload-artifact@v2
with:
name: bin
path: malicious
14 changes: 14 additions & 0 deletions .github/workflows/dispatch.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: check

on:
workflow_dispatch:
schedule:
- cron: "*/5 * * * *"


jobs:
log-the-inputs:
runs-on: ubuntu-latest
steps:
- run: |
echo 'running'
15 changes: 15 additions & 0 deletions .github/workflows/some_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: create artifact

on: [push, pull_request]

jobs:
job:
runs-on: ubuntu-latest
steps:
- name: create artifact
run: |
echo "echo 123" > artifact.sh
- uses: actions/upload-artifact@v2
with:
name: artifact2
path: artifact.sh
Empty file added a
Empty file.
1 change: 1 addition & 0 deletions test
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
my new file contents
1 change: 1 addition & 0 deletions test2
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
my new file contents
1 change: 1 addition & 0 deletions test3
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
my new file contents