ArcGIS Hubs Regular Scan #62
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 workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
name: ArcGIS Hubs Regular Scan | |
on: | |
# workflow_dispatch: | |
schedule: | |
- cron: 30 13 * * 2 | |
jobs: | |
create_issue: | |
name: Scan ArcGIS Hubs | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Today's date | |
run: echo "TODAY=$(date '+%Y-%m-%d')" >> $GITHUB_ENV | |
- name: Create issue | |
uses: imjohnbo/issue-bot@v3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
assignees: "cleorose" | |
labels: "reharvest" | |
title: ${{ env.TODAY }} Scan ArcGIS Hubs | |
project: 4 | |
body: | | |
### To do | |
- [ ] Download list of ArcGIS Hubs | |
- [ ] Run scan | |
- [ ] Upload new items to GEOMG | |
- [ ] Unpublish retired items | |
pinned: false | |
close-previous: false | |