Upgrade package json and package-solution json versions #6
Workflow file for this run
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
name: Microsoft Graph Task | |
on: [pull_request] | |
jobs: | |
create-task: | |
runs-on: ubuntu-latest | |
name: Create Task | |
steps: | |
# Create planner task using Microsoft Graph | |
- name: Create a task for the user | |
uses: vishalshitole/ms-graph-create-task@v1 | |
with: | |
clientId: ${{ secrets.CLIENT_ID }} | |
clientSecret: ${{ secrets.CLIENT_SECRET }} | |
tenantId: ${{ secrets.TENANT_ID }} | |
planId: ${{ secrets.PLAN_ID }} | |
title: "Review pull request." | |
userId: "78153959-f6fd-4f3c-a470-c16009509900" | |
description: "Please review the pull request. Link to the pull request ${{ github.event.pull_request.html_url }}." | |
bucketId: "p5cqjmcuiEmil6F7wLdcqckAGeHt" | |
dueByDate: "2023-09-15" | |
dueByTime: "10:00" | |
priority: 1 |