Skip to content

Update README.md

Update README.md #76

Workflow file for this run

name: "test"
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
- "releases/*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: get follower change
id: followerChange
uses: ./
with:
myToken: ${{ secrets.MY_TOKEN }}
notifyUnFollowEvent: "true"
- name: Get the output
run: >
printf "
is changed: ${{ steps.followerChange.outputs.changed }}\n
should notify: ${{ steps.followerChange.outputs.shouldNotify }}\n
html file at: ${{ steps.followerChange.outputs.htmlFilePath }}
"
- uses: actions/upload-artifact@v2
with:
name: follower-change-html
path: ${{ steps.followerChange.outputs.htmlFilePath }}