-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add account review checklist and action
- Loading branch information
Showing
5 changed files
with
54 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Request Employee Acknowledgment | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 1 1,4,7,10 *' # Runs at midnight on January 1st and July 1st every year | ||
workflow_dispatch: # This enables manual triggering | ||
|
||
|
||
jobs: | ||
create-issues: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install GitHub CLI | ||
run: sudo apt-get install gh | ||
|
||
- name: Read issue body | ||
id: acknowledgment_request | ||
run: | | ||
CONTENT=$(cat employee-lifecycle/account-review-checklist.md) | ||
echo "content<<EOF" >> $GITHUB_ENV | ||
echo "$CONTENT" >> $GITHUB_ENV | ||
echo "EOF" >> $GITHUB_ENV | ||
- name: Create Issue | ||
env: | ||
ISSUE_BODY: ${{ env.content }} | ||
GH_TOKEN: ${{ github.token }} | ||
run: | | ||
gh issue create --title "Quarterly Account Review" --body "$ISSUE_BODY" --assignee richford |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# ROAR Account Review Checklist | ||
|
||
- [ ] Google Workspace Shared Drives | ||
- [ ] GitHub Repositories | ||
- [ ] GitHub Teams | ||
- [ ] Clever | ||
- [ ] ClassLink | ||
- [ ] Redivis | ||
- [ ] Google Cloud Platform (GCP) / Firebase | ||
- [ ] Slack | ||
- [ ] Shared Email Accounts | ||
- [ ] ROAR-Owned Devices | ||
- [ ] Sentry | ||
- [ ] Cypress Cloud | ||
- [ ] Namecheap | ||
- [ ] Qualys | ||
- [ ] Beagle Security |