You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thank you for your pull request. Please make sure this PR is scoped to one change, and that any added or changed code includes tests with greater than 80% code coverage. See https://github.com/prebid/Prebid.js/blob/master/CONTRIBUTING.md#testing-prebidjs for documentation on testing Prebid.js.
2
+
Thank you for your pull request!
3
+
4
+
Please title your pull request like this: 'Module: Change', eg 'Fraggles Bid Adapter: support fragglerock'
5
+
6
+
Please make sure this PR is scoped to one change or you may be asked to resubmit.
7
+
8
+
Please make sure any added or changed code includes tests with greater than 80% code coverage.
9
+
10
+
See https://github.com/prebid/Prebid.js/blob/master/CONTRIBUTING.md#testing-prebidjs for documentation on testing Prebid.js.
11
+
12
+
For any user facing change, submit a link to a PR on the docs repo at https://github.com/prebid/prebid.github.io/
3
13
-->
4
14
5
15
## Type of change
@@ -11,14 +21,16 @@ Thank you for your pull request. Please make sure this PR is scoped to one chang
11
21
-[ ] Refactoring (no functional changes, no api changes)
12
22
-[ ] Build related changes
13
23
-[ ] CI related changes
24
+
14
25
-[ ] Does this change affect user-facing APIs or examples documented on http://prebid.org?
15
26
-[ ] Other
16
27
17
28
## Description of change
18
29
<!-- Describe the change proposed in this pull request -->
19
30
20
-
<!-- For new bidder adapters, please provide the following -->
21
-
- test parameters for validating bids
31
+
<!-- For new bidder adapters, please provide the following
32
+
- contact email of the adapter’s maintainer
33
+
- test parameters for validating bids:
22
34
```
23
35
{
24
36
bidder: '<bidder name>',
@@ -28,14 +40,8 @@ Thank you for your pull request. Please make sure this PR is scoped to one chang
28
40
}
29
41
```
30
42
31
-
Be sure to test the integration with your adserver using the [Hello World](/integrationExamples/gpt/hello_world.html) sample page.
32
-
33
-
- contact email of the adapter’s maintainer
34
-
-[ ] official adapter submission
35
-
36
-
For any changes that affect user-facing APIs or example code documented on http://prebid.org, please provide:
43
+
Be sure to test the integration with your adserver using the [Hello World](/integrationExamples/gpt/hello_world.html) sample page. -->
37
44
38
-
- A link to a PR on the docs repo at https://github.com/prebid/prebid.github.io/
39
45
40
46
## Other information
41
47
<!-- References to related PR or issue #s, @mentions of the person or team responsible for reviewing changes, etc. -->
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support
38
+
39
+
steps:
40
+
- name: Checkout repository
41
+
uses: actions/checkout@v4
42
+
43
+
# Initializes the CodeQL tools for scanning.
44
+
- name: Initialize CodeQL
45
+
uses: github/codeql-action/init@v3
46
+
with:
47
+
languages: ${{ matrix.language }}
48
+
config-file: ./.github/codeql/codeql-config.yml
49
+
# If you wish to specify custom queries, you can do so here or in a config file.
50
+
# By default, queries listed here will override any specified in a config file.
51
+
# Prefix the list here with "+" to use these queries and those in the config file.
52
+
53
+
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
54
+
# queries: security-extended,security-and-quality
55
+
56
+
57
+
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
58
+
# If this step fails, then you should remove it and run the build manually (see below)
59
+
- name: Autobuild
60
+
uses: github/codeql-action/autobuild@v3
61
+
62
+
# ℹ️ Command-line programs to run using the OS shell.
63
+
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
64
+
65
+
# If the Autobuild fails above, remove it and uncomment the following three lines.
66
+
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.
0 commit comments