Skip to content

Commit 1498e34

Browse files
committed
3.0.2 release
1 parent 806a72d commit 1498e34

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+3756
-5802
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Build source
2+
13
on:
24
workflow_call:
35
inputs:
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Deploy to Azure
2+
13
on:
24
workflow_call:
35
inputs:
@@ -17,11 +19,11 @@ jobs:
1719
name: build
1820
path: build
1921
- name: Connect to Azure
20-
uses: azure/login@v2
22+
uses: azure/login@a65d910e8af852a8061c627c456678983e180302
2123
with:
2224
creds: ${{secrets.AZURE_CREDENTIALS}}
2325
- name: Deploy to Azure Web App
24-
uses: azure/webapps-deploy@v2
26+
uses: azure/webapps-deploy@de617f46172a906d0617bb0e50d81e9e3aec24c8
2527
with:
2628
app-name: ${{vars.AZURE_APP_SERVICE_NAME}}
2729
package: build

.github/workflows/release.yml renamed to .github/workflows/deploy-to-github-release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
name: Deploy to GitHub Release
2+
13
on: workflow_call
24

35
jobs:

.github/workflows/tags.yml

Lines changed: 0 additions & 10 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
1+
name: Trigger on develop
2+
13
on:
24
push:
35
branches:
46
- develop
57

68
jobs:
79
build:
8-
name: Build
9-
uses: ./.github/workflows/build.yml
10+
name: Build source
11+
uses: ./.github/workflows/build-source.yml
1012
secrets: inherit
1113
with:
1214
environment: dev
1315
deploy:
14-
name: Deploy
16+
name: Deploy to Azure
1517
needs: build
16-
uses: ./.github/workflows/deploy.yml
18+
uses: ./.github/workflows/deploy-to-azure.yml
1719
secrets: inherit
1820
with:
1921
environment: dev
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
1+
name: Trigger on main
2+
13
on:
24
push:
35
branches:
46
- main
57

68
jobs:
79
build:
8-
name: Build
9-
uses: ./.github/workflows/build.yml
10+
name: Build source
11+
uses: ./.github/workflows/build-source.yml
1012
secrets: inherit
1113
with:
1214
environment: prd
1315
deploy:
14-
name: Deploy
16+
name: Deploy to Azure
1517
needs: build
16-
uses: ./.github/workflows/deploy.yml
18+
uses: ./.github/workflows/deploy-to-azure.yml
1719
secrets: inherit
1820
with:
1921
environment: prd
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Trigger on tags
2+
3+
on:
4+
push:
5+
tags:
6+
- v*.*.*
7+
8+
jobs:
9+
release:
10+
name: Deploy to GitHub Release
11+
uses: ./.github/workflows/deploy-to-github-release.yml
12+
secrets: inherit

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Bookings Bot
22

3-
[![.github/workflows/develop.yml](https://github.com/karamem0/bookings-bot/actions/workflows/develop.yml/badge.svg)](https://github.com/karamem0/bookings-bot/actions/workflows/develop.yml)
3+
[![.github/workflows/trigger-on-develop.yml](https://github.com/karamem0/bookings-bot/actions/workflows/trigger-on-develop.yml/badge.svg)](https://github.com/karamem0/bookings-bot/actions/workflows/trigger-on-develop.yml)
44
[![License](https://img.shields.io/github/license/karamem0/bookings-bot.svg)](https://github.com/karamem0/bookings-bot/blob/main/LICENSE)
55

66
[Microsoft Bookings API](https://learn.microsoft.com/ja-jp/graph/api/resources/booking-api-overview) を使用して [Microsoft Bookings](https://www.microsoft.com/ja-jp/microsoft-365/business/scheduling-and-booking-app) の予約をするボットです。

0 commit comments

Comments
 (0)