Skip to content

Commit 2eecaa8

Browse files
committed
update config and metadata files post move
1 parent 2759bce commit 2eecaa8

File tree

9 files changed

+32
-74
lines changed

9 files changed

+32
-74
lines changed

.github/ISSUE_TEMPLATE/appengine.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: "package:gcloud"
3+
about: "Create a bug or file a feature request against package:gcloud."
4+
labels: "package:gcloud"
5+
---

.github/labeler.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@
44
- changed-files:
55
- any-glob-to-any-file: '.github/**'
66

7+
'package:appengine':
8+
- changed-files:
9+
- any-glob-to-any-file: 'pkgs/appengine/**'
10+
11+
'package:gcloud':
12+
- changed-files:
13+
- any-glob-to-any-file: 'pkgs/gcloud/**'
14+
715
'package:native_synchronization':
816
- changed-files:
917
- any-glob-to-any-file: 'pkgs/native_synchronization/**'

pkgs/appengine/.github/workflows/build.yaml renamed to .github/workflows/appengine.yml

Lines changed: 16 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
1-
name: Build
1+
name: package:appengine
2+
permissions: read-all
23

34
on:
4-
schedule:
5-
# “At 00:00 (UTC) on Sunday.”
6-
- cron: '0 0 * * 0'
7-
push:
8-
branches: [ master ]
95
pull_request:
10-
branches: [ master ]
6+
branches: [ main ]
7+
paths:
8+
- '.github/workflows/appengine.yml'
9+
- 'pkgs/appengine/**'
10+
push:
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/appengine.yml'
14+
- 'pkgs/appengine/**'
15+
schedule:
16+
- cron: '0 0 * * 0' # weekly
1117

1218
jobs:
1319
build:
1420
runs-on: ubuntu-latest
21+
defaults:
22+
run:
23+
working-directory: pkgs/appengine
1524

1625
steps:
1726
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332

pkgs/appengine/.github/dependabot.yaml

Lines changed: 0 additions & 14 deletions
This file was deleted.

pkgs/appengine/.github/workflows/publish.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

pkgs/appengine/CONTRIBUTING.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

pkgs/appengine/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Build](https://github.com/dart-lang/appengine/actions/workflows/build.yaml/badge.svg)](https://github.com/dart-lang/appengine/actions/workflows/build.yaml)
1+
[![package:appengine](https://github.com/dart-lang/labs/actions/workflows/appengine.yml/badge.svg)](https://github.com/dart-lang/labs/actions/workflows/appengine.yml)
22
[![pub package](https://img.shields.io/pub/v/appengine.svg)](https://pub.dev/packages/appengine)
33
[![package publisher](https://img.shields.io/pub/publisher/appengine.svg)](https://pub.dev/packages/appengine/publisher)
44

pkgs/appengine/analysis_options.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ analyzer:
66
unnecessary_import: ignore
77

88
exclude:
9-
- tmp/**
9+
- tmp/**

pkgs/appengine/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 0.13.8
33
description: >
44
Support for using Dart as a custom runtime on Google App Engine Flexible
55
Environment
6-
repository: https://github.com/dart-lang/appengine
6+
repository: https://github.com/dart-lang/labs/tree/main/pkgs/appengine
77

88
topics:
99
- cloud

0 commit comments

Comments
 (0)