From 26fc9432caa29eada805b3b8d26cd47d55772e9b Mon Sep 17 00:00:00 2001 From: braxtonhall Date: Fri, 28 Oct 2022 12:44:09 -0700 Subject: Add Nick Bradley --- entries/nickbradley/.github/workflows/fib.yml | 38 +++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 entries/nickbradley/.github/workflows/fib.yml (limited to 'entries/nickbradley/.github/workflows') diff --git a/entries/nickbradley/.github/workflows/fib.yml b/entries/nickbradley/.github/workflows/fib.yml new file mode 100644 index 0000000..860ee22 --- /dev/null +++ b/entries/nickbradley/.github/workflows/fib.yml @@ -0,0 +1,38 @@ +name: fib\ +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + + workflow_dispatch: + +jobs: + compute: + runs-on: ubuntu-latest + steps: + - name: sum + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + shell: bash + run: | + prev_fib=${{ secrets.PREV_FIB_NUM }} + curr_fib=${{ secrets.CURR_FIB_NUM }} + next_fib=$((${prev_fib:-0} + ${curr_fib:-1})) + echo "prev=$curr_fib" >> $GITHUB_ENV + echo "curr=$next_fib" >> $GITHUB_ENV + - uses: gliech/create-github-secret-action@v1 + with: + name: PREV_FIB_NUM + value: ${{ env.prev }} + pa_token: ${{ secrets.GH_TOKEN }} + - uses: gliech/create-github-secret-action@v1 + with: + name: CURR_FIB_NUM + value: ${{ env.curr }} + pa_token: ${{ secrets.GH_TOKEN }} + - name: Create commit comment + uses: peter-evans/commit-comment@v2 + with: + body: | + Your Fibonacci number is ${{ env.curr }}. -- cgit v1.2.3-70-g09d2