Skip to content

Commit

Permalink
Adjust README.md and CI configs for .devcontainer/
Browse files Browse the repository at this point in the history
  • Loading branch information
fniephaus committed Jun 16, 2022
1 parent f8262d7 commit a374c36
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ on:
branches-ignore:
- 'github/**'
paths-ignore:
- '.travis.yml'
- '.devcontainer/**'
- '.github/workflows/quarkus.yml'
- '**.md'
pull_request:
paths-ignore:
- '.travis.yml'
- '.devcontainer/**'
- '.github/workflows/quarkus.yml'
- '**.md'
# Enable manual dispatch of the workflow
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ This source repository is the main repository for GraalVM and includes the follo

Directory | Description
------------ | -------------
[`.devcontainer/`](.devcontainer/) | Configuration files for GitHub dev containers.
[`.github/`](.github/) | Configuration files for GitHub issues, workflows, ….
[`compiler/`](compiler/) | [Graal compiler][reference-compiler], a modern, versatile compiler written in Java.
[`espresso/`](espresso/) | [Espresso][java-on-truffle], a meta-circular Java bytecode interpreter for the GraalVM.
Expand Down
2 changes: 1 addition & 1 deletion ci.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ local vm = import 'vm/ci_includes/vm.jsonnet';
# for a PR that only touches *.md files, the docs, are config files for GitHub
local add_excludes_guard(build) = build + {
guard+: {
excludes+: ["**.md", "docs/**", ".github/**"]
excludes+: ["**.md", "docs/**", ".devcontainer/**", ".github/**"]
}
};

Expand Down

0 comments on commit a374c36

Please sign in to comment.