├── docs ├── hi.md └── some-change.md ├── src ├── newsrc.js └── index.js ├── README.md └── .github ├── workflows-lab ├── invalid-globs.yml ├── hai.yml └── ci.yml └── workflows ├── hai.yml └── ci.yml /docs/hi.md: -------------------------------------------------------------------------------- 1 | asd 2 | -------------------------------------------------------------------------------- /src/newsrc.js: -------------------------------------------------------------------------------- 1 | asd 2 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | const hi = "hi"; 2 | // moar 3 | -------------------------------------------------------------------------------- /docs/some-change.md: -------------------------------------------------------------------------------- 1 | from topic 2 | new new 3 | k 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cake Mix Aggregator 2 | 3 | News aggregator for all things 🍰🍰🍪🍰🍰🍰 4 | -------------------------------------------------------------------------------- /.github/workflows-lab/invalid-globs.yml: -------------------------------------------------------------------------------- 1 | on: 2 | push: 3 | paths: "*****" 4 | 5 | jobs: 6 | one: 7 | runs-on: ubuntu-latest 8 | steps: 9 | - run: ":" 10 | -------------------------------------------------------------------------------- /.github/workflows-lab/hai.yml: -------------------------------------------------------------------------------- 1 | on: 2 | push: 3 | 4 | 5 | name: "Have a 🍪 (LAB)" 6 | 7 | jobs: 8 | CI: 9 | name: "cookie LAB" 10 | runs-on: ubuntu-16.04 11 | steps: 12 | - run: ":" 13 | -------------------------------------------------------------------------------- /.github/workflows/hai.yml: -------------------------------------------------------------------------------- 1 | on: 2 | push: 3 | 4 | 5 | name: "Have a 🍪" 6 | 7 | jobs: 8 | CI: 9 | name: "cookie" 10 | runs-on: ubuntu-16.04 11 | steps: 12 | - run: env 13 | - run: "echo '${{ github }}'" 14 | -------------------------------------------------------------------------------- /.github/workflows-lab/ci.yml: -------------------------------------------------------------------------------- 1 | on: 2 | pull_request: 3 | paths-ignore: 4 | - "docs/**" 5 | push: 6 | paths-ignore: 7 | - "do[cs]s?/**" 8 | branches-ignore: 9 | - "ignored*" 10 | - "!ignored-reincluded" 11 | 12 | name: "Run CI LAB" 13 | 14 | jobs: 15 | CI: 16 | name: "CI test LAB" 17 | runs-on: ubuntu-16.04 18 | steps: 19 | - run: ":" 20 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | on: 2 | pull_request_review_comment: 3 | pull_request_review: 4 | pull_request: 5 | paths-ignore: 6 | - "docs/**" 7 | push: 8 | paths-ignore: 9 | - "do[cs]s?/**" 10 | branches-ignore: 11 | - "ignored*" 12 | - "!ignored-reincluded" 13 | 14 | name: "Run CI" 15 | 16 | jobs: 17 | CI: 18 | name: "CI test" 19 | runs-on: ubuntu-16.04 20 | steps: 21 | - run: "echo '${{ github.secrets.THE_TEST_SECRET }}' | wc" 22 | - uses: actions/checkout@master 23 | - run: "ls *" 24 | --------------------------------------------------------------------------------