From 14ac2c834912935b66a1b2049c2f0b78ccbc315c Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Sun, 20 Mar 2022 02:11:51 -0500 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df6d010..df75aff 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ If you like or appreciate this project then please consider donating. |**Wishlists**|[Amazon](https://smile.amazon.com/hz/wishlist/ls/3EVXR21VFKD9Z?ref_=wl_share)|[Adafruit](https://www.adafruit.com/wishlists/515932)|[eBay](https://www.ebay.com/mye/myebay/WatchList?custom_list_id=636668138019)| |---|---|---|---| -I have received some really great letters with donations & email, so I plan to make some of them public while redacting last names or anything I feel should remain private, and will be posting them on the frontpage of kinto.sh as I really do appreciate all of the support! +I have received some really great letters with donations & email. I've also posted some of them with redacted first names to kinto.sh. Also if you would like to send me a keyboard directly then please reach out to me over [twitter](https://twitter.com/gbit86) and send me a DM. From bd9ecd123fca1cc4fe51f16d0fe823e5610c1a11 Mon Sep 17 00:00:00 2001 From: Ben Reaves Date: Fri, 1 Apr 2022 23:58:25 -0500 Subject: [PATCH 2/2] Create 01-ubuntu-budgie.yml --- .github/workflows/01-ubuntu-budgie.yml | 34 ++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/01-ubuntu-budgie.yml diff --git a/.github/workflows/01-ubuntu-budgie.yml b/.github/workflows/01-ubuntu-budgie.yml new file mode 100644 index 0000000..37c2c37 --- /dev/null +++ b/.github/workflows/01-ubuntu-budgie.yml @@ -0,0 +1,34 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the workflow will run +on: + # Triggers the workflow on push or pull request events but only for the master branch + push: + branches: [ staging ] + + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + build: + # The type of runner that the job will run on + runs-on: ubuntu-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + - uses: actions/checkout@v3 + + # Runs a single command using the runners shell + - name: Run a one-line script + run: echo Hello, world! + + # Runs a set of commands using the runners shell + - name: Run a multi-line script + run: | + echo Add other actions to build, + echo test, and deploy your project.